-
Posts
1,034 -
Joined
-
Last visited
-
Days Won
17
Everything posted by gw1500se
-
"ldap_get_entries" não retorna 1 dos atributos
gw1500se replied to pedro456789's topic in PHP Coding Help
Este es un foro en inglés. -
Do the validation with JavaScript and if OK then submit the form. Keep in mind that PHP is stateless and server side only. Once PHP outputs the page, it forgets everything and the next submit is new as far as PHP is concerned. You should re-validate with PHP in case hackers are trying to penetrate your server, in which case simply output an error page. It is more user friendly to validate with JavaScript so the user does not have to wait on the server.
-
Did you echo $original_name to make sure it contains what you expect (you didn't show how you built it)? Do you have errors turned on? error_reporting(E_All)
-
Did you print $ballInformation just before the execute to make sure it contains what you think?
-
So what is your question or error message?
-
Sending an email when expiry date is in 1 month
gw1500se replied to coatse's topic in PHP Coding Help
First of all you have way too many unnecessary <?PHP and ?>. You have retrieved your data from the database but never use that result anywhere. All you need to do is create a string formatted with the data so it says what you want and put it in the body. Am I missing something? P.S. Don't use '*' in your select query. Specify only those columns you will actually use. -
Show your new code.
-
How to pre fill an array with missings keys?
gw1500se replied to beginnerForPHP's topic in PHP Coding Help
Looks like you already did that. Perhaps you need to better explain what you are trying to do and post some actual code. Also, when you post code use the code icon (<>) in the top menu and specify PHP. -
Kindly post some code. Be sure to use the code icon (<>) in the top menu and specify PHP.
-
As you can see $_POST does not contain what you expect. Now you have to figure out why.
-
Looks like $_POST does not contain what you think. Before the 'if' block use this: echo "<pre>"; print_r($_POST); echo "</pre>";
-
What have your tried? Post the code here (use the code icon(<>) in the top menu and specify PHP. If you don't know where to start read this.
-
That is a different question from what you originally asked about downloading a file. Whether or not your microcontroller is hacakble is independent of downloading an update. Assuming, of course, that you can trust the download site. Whether or not is can be hacked depends on how well you secure the microcontroller in general. Since you mentioned Python, is it running Raspbian?
-
What kind of attacks? Based on what you posted I am guessing you mean man-in-the-middle attacks. Once it is on either machine it is a different security issue.
-
You need to post your code here not make people go to a 3rd part web site. Also if you suspect the problem is in Javascript then post in the Javascript forum. When you do post use the code icon (<>) in the top menu for your code and select the appropriate code type.
-
how to insert auto current date inside this tag please help?
gw1500se replied to Ronel's topic in PHP Coding Help
Depends on what format you want but for mm/dd/yyyy use: <?php echo "<td colspan=\"2\"><input type=\"date\" name=\"date_encode\" style=\"width:100%\" value=\"".date("m/d/Y")."\" /></td>"; ?> -
Simple PHP Include Question - I think my host changed something
gw1500se replied to kirkdickinson's topic in PHP Coding Help
What is the error? Do you have errors turned on? error_reporting(E_ALL); -
Did you remove the HTML from 'include.php'? Again the pure HTML should be using the HTML <include> tag.
-
Are you looking to fix code (post it here using code icon and specify PHP and any errors)) or resolve a git problem for which this is the wrong forum?
-
Generally the structure of a PHP include is not a complete HTML file. Rather it is PHP code. Also when you include PHP it should be inside <body> tags. Finally, it appears to me you should be using HTML <include> tags not PHP require.