| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 9 months |
| seen | 20 hours ago | |
| stats | profile views | 234 |
|
Nov 25 |
answered | Sperate PHP include files - opening and closing brackets/braces { } for if's and while loop nd closing curly brackets/braces in between files |
|
Nov 25 |
comment |
Putting PHP values in HTML You forget to call echo for each reference to $row inbetween HTML code. |
|
Nov 25 |
comment |
unexpected T_STRING, can't find a syntax error Have no idea then 3v4l.org/TB8nR Sorry. |
|
Nov 25 |
comment |
unexpected T_STRING, can't find a syntax error @PRNDLDevelopmentStudios Comment out the line 43 and try again (duh :) Oh yes and maybe replace it with $filterLetters = array();. |
|
Nov 25 |
comment |
How to find encryption type There could be myriads of custom, special-purpose, adhoc, homebrew hash types out there. Where does it originate from? |
|
Nov 25 |
comment |
unexpected T_STRING, can't find a syntax error @PRNDLDevelopmentStudios Could you place var_dump($filterString); at the beginning of the parseFilterString function and tell us what it says? |
|
Nov 25 |
comment |
unexpected T_STRING, can't find a syntax error @PRNDLDevelopmentStudios But you haven't provided all the code that calls parseFilterString function.. |
|
Nov 25 |
comment |
unexpected T_STRING, can't find a syntax error So where's the line 43? |
|
Nov 25 |
comment |
How to remove \" A place to fiddle with it: 3v4l.org/J49hK. It looks like you should get what you expect. |
|
Nov 25 |
comment |
How should I save a visitor's post before sign up? Storing the info in browser cookies could be the answer. |
|
Nov 25 |
revised |
PHP Replace multidimensional array keys added 420 characters in body |
|
Nov 25 |
answered | PHP Replace multidimensional array keys |
|
Nov 25 |
comment |
PHP - htmlspecialchars How do you test the output? You aren't viewing it on an HTML page in a browser, right? If so, what you get makes perfect sense. |
|
Nov 25 |
comment |
Why does PDO take 1 second to connect? Maybe because connecting to a database and running queries through an established connection are tasks in different weight categories? |
|
Nov 25 |
comment |
Send php data to html page Possibly try factoring out the code that depends on that variable you want to send into a separate php file to be included with include or require directives. |
|
Nov 24 |
comment |
Find out which shell PHP is using @RPM Aww, it doesn't. But thing like var_dump($_SERVER); does.. |
|
Nov 24 |
accepted | Find out which shell PHP is using |
|
Nov 24 |
comment |
Find out which shell PHP is using Maybe running echo $_SERVER["SHELL"] from PHP would be more straightforward. |
|
Nov 24 |
comment |
Find out which shell PHP is using That's right, it works. Not too elegant solution tho.. |
|
Nov 24 |
asked | Find out which shell PHP is using |