Ask a Question related to PHP Notes, Design and Development.
-
php-general@lists.php.net #1
note 33987 added to tutorial.oldcode
Sorry for the multiple posts. Here's yet another way of doing the same thing.
$expected=array(
'name', // Only accept these variables from a submit!
'email',
'favorite_color'
); foreach ($expected as $formvar)
$$formvar = (isset($_REQUEST[$formvar]))?$_REQUEST[$formvar]:NULL;
----
Manual Page -- [url]http://www.php.net/manual/en/tutorial.oldcode.php[/url]
Edit Note -- [url]http://master.php.net/manage/user-notes.php?action=edit+33987[/url]
Delete Note -- [url]http://master.php.net/manage/user-notes.php?action=delete+33987&report=yes[/url]
Reject Note -- [url]http://master.php.net/manage/user-notes.php?action=reject+33987&report=yes[/url]
php-general@lists.php.net Guest
-
note 33848 added to tutorial.oldcode
You can convert 'old php code' that expects register_globals=on to work with register_globals=off by including this script near the top. It improves... -
note 33754 added to tutorial
Click here to go to the support pages. Click here to submit a bug report. Click here to request a feature. ---- Manual Page --... -
note 33581 added to tutorial
I noted that the eversoft editor mentioned in the last comment doesn't support php highlighting (which is handy to show you which part of your php... -
note 33563 added to tutorial
To edit the PHP sources I am using the 1st page software. It is free and can de downloaded from: http://www.evrsoft.com/ Attractive points are:... -
note 33595 added to tutorial
http://www.architectenkamer.nl/0747eab0.jpg ---- Manual Page -- http://www.php.net/manual/en/tutorial.php Edit Note --...



Reply With Quote

