i want to send an input text as a var then i need to save as, delete, rename
this is the html code for my textbox:
<input class='textbox' name='textsize' type='text' size='25' value='<?php echo($textsize)?>' onFocus=\"textboxfocus('textsize')\" onBlur=\"leavefocus();\">
i want to send the information in that in this format:
$textsize = "inputted text";
since i dont want to just save this to the bottom of the file i need to have it save the file as one name. delete the old file. and rename the new one to the old file. old file=config.php new file=configtemp.php, i also need to implement the addslashes feature, which i cant figure out