How to install Wordpress? Get link Facebook X Pinterest Email Other Apps - March 20, 2018 Step 1 : Go to www.wordpress.org and click on download Tab Step 2: Extract it into xampp server root folder i.e htdocs Step 3 : start xampp Step 4 : Goto web browser and tyoe localhost/project-name Get link Facebook X Pinterest Email Other Apps Comments Healthykana29 October 2022 at 06:52Hi good Evening! I read the blog and I found it helpful about my PHP. Thank you for sharing.ReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
How to Delete record using PHP Ajax - April 13, 2018 index.php ? 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 <!DOCTYPE html> <html> <head> <title></title> </head> <body> <?php $connection = mysqli_connect( "localhost" , "root" , "" , "db_2018" ) or die (mysqli_error()); $ReadSql = "SELECT * FROM `crud`" ; $res = mysqli_query( $connection , $ReadSql ); ?> <table> <tr> <th>name</th> <th>Last Name</th> <th>email id</th> ... Read more
How to seperate character from string in php - January 10, 2019 ? 1 2 3 4 5 6 7 8 9 $string = "abcdef" ; $result =[]; $strlen = strlen ( $string ); for ( $i =0; $i < $strlen ; $i ++) { $result [ $i ]= $string [ $i ]; } print_r( $result ); $string = "abcdef"; $result=[]; $strlen = strlen($string); for($i=0;$i<$strlen;$i++) { $result[$i]=$string[$i]; } print_r($result); Read more
- October 13, 2024 <?php function numberToWords($num) { $ones = array( 0 => "zero", 1 => "one", 2 => "two", 3 => "three", 4 => "four", 5 => "five", 6 => "six", 7 => "seven", 8 => "eight", 9 => "nine", 10 => "ten", 11 => "eleven", 12 => "twelve", 13 => "thirteen", 14 => "fourteen", 15 => "fifteen", 16 => "sixteen", 17 => "seventeen", 18 => "eighteen", 19 => "nineteen" ... Read more
Hi good Evening! I read the blog and I found it helpful about my PHP. Thank you for sharing.
ReplyDelete