Showing posts with label PHP. Show all posts
Showing posts with label PHP. Show all posts
How to create array in PHP

How to create array in PHP

agyanadda
Array is used to stores multiple values in one single variable We can create array by using "array" Keyword Type of Array Indexed arrays - Numeric index Associative
Language Constructors In PHP

Language Constructors In PHP

agyanadda
Language Constructors in PHP There is huge collection of in build Language constructor in PHP. That helps us to call  directly by PHP files.  Like echo() is not
PHP Ajax Display Dynamic MySQL Data in Bootstrap Modal

PHP Ajax Display Dynamic MySQL Data in Bootstrap Modal

agyanadda
===============[getcode.php]====================== connect(); $sql="select *from gradienttb where id='$id'"; $result=$conn->query($sql); if($result->num_rows>=0){ $row=$result->fetch_assoc(); echo json_encode($row); // echo $row['id']."".$row['cidd']; } ?> ================[
PHP SIMPLE CRUD APPLICATION

PHP SIMPLE CRUD APPLICATION

agyanadda
========================================================================= |====================== index.php ======================================| ========================================================================= CRUD CRUD APPLICATION Show ========================================================================= |====================== connection.php =================================| ========================================================================= connect_error){ die("Eoor to connect".$conn->connect_error); } ?> ========================================================================= |======================== dbcreate.php =================================| =========================================================================