Jump to content

query syntax


jenniferG

Recommended Posts

There's no need for 'quotes' in url query strings

 

http://wwwexample.com/index.php?foo=bar

 

not

 

http://wwwexample.com/index.php?foo='bar'

 

Also the "" double quotes in php mean you can use single quotes within them, no need for the seperating dot (even if you wanted to keep those single quotes)

 

$SHOWLINK="$MYURL$MYDIR/showdata2.php?INDEXB='$INDEX'&SI='$MAINDATE'"; 

 

or use dots to seperate variables OUTSIDE of quotes, like this:

 

$SHOWLINK= $MYURL.$MYDIR."/showdata2.php?INDEXB=".$INDEX."&SI=".$MAINDATE; 

 

but otherwise yes, it would work anyway, except the url syntax.  You variables would all end up with single quotes around them, I think

Link to comment
https://forums.phpfreaks.com/topic/72860-query-syntax/#findComment-367429
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.