It is fairly simple to check the length of a string in PHP. All you need to do is use the function strlen(). Below is an example of how it is used. <?php $my_text = "Hello"; echo strlen($my_text);...
" / " and' / 'However the same starter must end e.g.:echo " '; is wrongecho ' "; is wrongecho " ' "; is rightecho ' " '; is rightecho " " ' '; is wrong - in this case echo " " . ' ';...
You can if you use '.htacces' (.htacces). It is a root file that declares many functions for the whole website or specific folders. Go to a search engine and search for ".htacces remove 301" for the...
If you will see this example as below, this may help. <?php $string = mysql_real_escape_string($string); $sql = "insert into stringtable(mystring) values('$string')"; ?>