There are two problems with your code. One, the first angle bracket is un-closed. Two, the quotation marks can't be used this way. For the quotes, you can either escape the embedded ones or use two different styles. Try this:
$output='click here ';
2007-02-06 05:46:13
·
answer #1
·
answered by Anonymous
·
4⤊
0⤋
own living house web page is fairly good at form converstions and also you seldom favor to do form conversions (Google "form conversion" in case you do not understand what meaning), notwithstanding, the knowledge you have become is telling you that you're using a "consistent" named booleand on-line 7. look on the own living house web page guide for the settype() funciton and also you will see that the second one parameter should be a string--and also you're passing an undefined consistent as a change. Your actuality: $var2=settype($var1,boolean) ; the second one parameter isn't enclosed in unmarried or double costs and is hence a consistent--a consistent you have not defined. The restoration should be: $var2=settype($var1,'boolean') ; Or, in case you needed to understand a thanks to apply a consistent in own living house web page: outline('boolean', 'boolean'); // the consistent boolean is determined to the string "boolean" $var2=settype($var1,boolean) ; So, briefly, you've an mistakes on your syntax.
2016-11-02 12:11:47
·
answer #3
·
answered by ? 4
·
0⤊
0⤋