Travis D
|
| Posted: 09/18/2002, 4:18 PM |
|
Hi this is part of a form, the listbox that will show only items from the URL param.
select lunchbox_menu_ID, lunchbox_menu_Item from lunch_box_menu where lunch_box_menu.lunchbox_ID =" & GetParam("lunchbox_ID") & "
When veiwed i get this message.
<b>Fatal error</b>: Call to undefined function: getparam() in <b>/home/sites/site20/web/lunchbox/OrderSheet.php</b> on line <b>1199</b><br>
Help would be nice(really)
|
|
|
 |
WilliamB
|
| Posted: 09/18/2002, 11:17 PM |
|
GetParam() is ASP. The PHP version is called get_param(). Also, you are using the ASP concatenation operator & instead of . for PHP. U probaly wasted alot of time for something you would have found about by peaking into the help file which lists all the functions.
|
|
|
 |
|