How would i make it so it inserts the data into the text file that matches $category.
like so:
$read = fopen("$category.txt", "r");
$contents = fread($read, filesize('$category.txt'));
but clearly proper way..

How would i make it so it inserts the data into the text file that matches $category.
like so:
$read = fopen("$category.txt", "r");
$contents = fread($read, filesize('$category.txt'));
but clearly proper way..
.:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
.:.: Stand up for what is right, even if you stand alone:.:.
I think putting {} around the variable should make it work. so like fopen("{$category}.txt", "r") if that doesn't work, try fopen("".$category.".txt", "r")
This is our situation and we're happy to be here,
I wouldn't change this place for anything.
Code:Warning: filesize() [function.filesize]: stat failed for ".$category.".txt in /home/chong08/public_html/mini-roberts.com/tim/adddef.php on line 53 Warning: fread() [function.fread]: Length parameter must be greater than 0 in /home/chong08/public_html/mini-roberts.com/tim/adddef.php on line 53
Last edited by Colin-Roberts; 11-02-2009 at 09:59 PM.
You changed the second line as well yeah?
This is our situation and we're happy to be here,
I wouldn't change this place for anything.
yep, changed all 3 of them
Last edited by Colin-Roberts; 11-02-2009 at 10:06 PM.
.:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
.:.: Stand up for what is right, even if you stand alone:.:.
PHP Code:$read = fopen( $category . '.txt', 'r' );
$contents = fread( $read, filesize( $category . '.txt' ) );
welllooks like it should work to me.. i'm not really sure how else to do it..PHP Code:$read = fopen("".$category.".txt", "r");
$contents = fread($read, filesize("".$category.".txt"));
This is our situation and we're happy to be here,
I wouldn't change this place for anything.
i'm just going do it all in mysql instead..
.:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
.:.: Stand up for what is right, even if you stand alone:.:.
Want to hide these adverts? Register an account for free!