Related Articles
Attention: This message appears to be from a “spoofed” email address. Before you take any action, please notify your IT Operations team and have them examine the message
Outlook email client will notify below message if you receive email from unknown person and the email contains some address details and phone number details below is the content outlook email client will show in the body of the email. Attention: This message appears to be from a “spoofed” email address. Before you take any […]
Best way to loop through a PHP mysql Resultset
If you want to loop throuh the mysql result set twice then use below way. $result = mysql_query(“SELECT * FROM my_table”);while($row = mysql_fetch_assoc($result)) {// inside the loop} The problem is, if you want to loop through the same result set again, you will get an error because the internal pointer is currently at the end […]
Export to Excel Using PHP and Mysql
Below simple program will export mysql data values to excel sheet without using any PHP libraries. Export to Excel Using PHP and Mysql Note: IF you get errors or in excel all the data is in one column, then instead t tab space use, comma ‘,’.