P hp provides very simple built-in function for checking where given value is numeric or not. I personally often check the value before entering it into database for exact data. Just copy below code and paste wherever you want and test it. [crayon-6511b934f3788324050381/] Above code will check the value stored in variable and show us result. If the value is ... Read More »
Daily Archives: January 17, 2015
Read and Write Text File with PHP
This is very common tutorial but peoples who are new in PHP don’t know about PHP file handling functions. Writing on text file and reading back from text file is not difficult task Php provides very good functions for this purpose. I tried my best to make my code simple so let’s start. We will create two functions Write_on_file($file, $message) Read_from_file($file) ... Read More »