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 code you want to perform some action for some condition. Like if(expression) { //your statement. } if(expression){ … Read more »
PHP Decission Making or Conditional Statement
Php conditional Statement. On this php educational we understand about , conditional statement. And what is Conditional Statement? And how Conditional Statement executes? Maximum scripts examine situations and alternate their behavior for that reaso… Read more »
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 you want to work with a value that you do not want to alter throughout your php script's execution. You can defi… Read more »
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 . The or operator -which is indicated by two pipe characters( || ) or simply the characters or teturns true if… Read more »
JavaScript Print command
How can use java script print command :here is the print command option can you try this; function printContent(el){ var restorepage = document.body.innerHTML; var printcontent = document.getElementById(el).innerHTML; document.body.innerHTM… Read more »
php(myproject/ajax/getloan.php)
include('../dbh.php'); $member_id = $_POST['member_id']; $sql = "SELECT * FROM user_reg WHERE member_id = '$member_id' LIMIT 1"; $sql_deposit = "SELECT SUM(dep_amount) as total_deposit FROM user_deposit WHERE member_id = '$member_id'"; $sql_withdraw… Read more »
php(myproject/withdraw_submit_success)form
session_start();include('../dbh.php'); if(isset($_POST['submit'])){ $with_date =$_POST['with_date']; $member_id = $_POST['member_id']; $member_name = $_POST['member_name']; $withdraw_amount = $_POST['amount']; … Read more »
php (my project /Withdraw .php)form.
include('include/header.php'); include('dbh.php'); ?> Please Submit Withdraw hear. Date … Read more »
Php Comparison Operators
Comparison operators perform test on their operands. They return the boolean value true if the test is successful and return false otherwise . This type of expression is useful in control structures, such as if and while statements.You will mee… Read more »
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't very useful,though,unless you can manipulate the data you can store. Operators are symbols that enable you to use… Read more »
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() provides information about all the types contained within the variable, as well as about the variable itself. we can put… Read more »
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 programming languages therefore demand that the programmer declare in advance which type of data a variable will c… Read more »
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 script. In PHP comment is two kinds 1. Single line comments. 2. Multiline comments. 1=> Single-line comments begin wi… Read more »
How to write javascript
This is a heading This is a paragraph document.write("This is a heading"); document.write("This is a paragraph"); … Read more »
Html_form_with_get_post
if(isset($_POST['submit'])){ echo ""; print_r($_POST); echo "";}?>Welcome to the Registration Form: Gender: Male Female Choose P… Read more »
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 anything inside action therefore action="" that means, we are submitting the page to that page itself-->There are two methodsGET = Sends… Read more »
Html colgroup_in_table
NAME SALARY OFFICE Nirjhor Anjum 500000 Eskaton Road Dr. Ishak Anjum 900000 Panthapath … Read more »
Html colspan_rowspan_in_table
Point Table TABLE DATA Ishak Abdullah 50 Anjum Nirjhor Tot… Read more »