PHP conditional operator if....else
In this episode We discussion about if....else statement . But first we discussion about Multiple if statement. When you write php...
PHP Decission Making or Conditional Statement
Php conditional Statement. On this php educational we understand about , conditional statement. And what is Conditional Statement...
php Constants
In php offer a flexible way of storing data because you can change their values and the type of data they store at any time. If however...
Php Locical Operators.Or Compleax Logical operator
The logical operators in php lest combinations of booleans. php locical operators is important for understanding conditional statement ....
JavaScript Print command
How can use java script print command :here is the print command option can you try this; <!DOCTYPE html> <html> <head...
php(myproject/ajax/getloan.php)
<?php include('../dbh.php'); $member_id = $_POST['member_id']; $sql = "SELECT * FROM user_reg WHERE member_...
php(myproject/withdraw_submit_success)form
<?php session_start(); include('../dbh.php'); if(isset($_POST['submit'])){ $with_date =$_POST[...
php (my project /Withdraw .php)form.
<?php include('include/header.php'); include('dbh.php'); ?> <div class="container "...
Php Comparison Operators
Comparison operators perform test on their operands. They return the boolean value true if the test is successful and return false ...
Operators and Expressins.
You can now assign data to variables, and you can even investigate and change the data type of a variable. A programming language isn...
Displaying Type Information with var_dump();
var_dump() tells you a variable's type an its contents .More Than that, for complex types such as arrays and objects,var_dump() provi...
PHP Data types.
Different types of data take up different amounts of memory and can be treated differently when they are manipulated in a script. Some pr...
Comments in PHP code.
A comment is text in a script that is ignored by the PHP engine. Comments can be used tomade code more readable or to annotate a sc...
How to write javascript
<html> <head> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph</p...
Html_form_with_get_post
<?php if(isset($_POST['submit'])) { echo "<pre>"; print_r($_POST); echo "</pre>"; ...
HTML form(GET,POST)
<!-- action="index.php" = Inside action we set the name of the php page where we submit the HTML Form. If we don't put a...
Html colgroup_in_table
<!DOCTYPE html> <html> <head> </head> <body> <table style="border-collapse:collapse; border-color:g...
Html colspan_rowspan_in_table
<table border="1" style="width:50%; border-collapse:collapse; text-align:center;"> <caption>Point Ta...