Showing posts from July, 2022
for loop in php

for loop in php

<?php $d = "A00"; for($i=1;$i<=5;$i++){ echo ++$d; } ?>

Read Now
for loop code in php

for loop code in php

<?php for($i=1;$i<=5;$i++){ echo "A0".$i."<br>"; } ?>

Read Now
Delay program in php

Delay program in php

!) using sleep function <?php echo date('y-m-d H:i:s')."<br>"; sleep(5); echo date('y-m…

Read Now
create table in sql

create table in sql

1) priamry key in sql 2) not null in sql  3) datatype in sql 4) AUTO_INCREMENT in sql  in this example you learn the t…

Read Now
factorial in php

factorial in php

<?php  $n = 5; $factorial = 1; for($i=$n;$i>=1;$i--){ $factorial =$factorial * $i; } echo "Factorial is :- …

Read Now
Check Website Lines of code in php

Check Website Lines of code in php

<?php $file_code = file("http://vishalusrate.rf.gd/"); foreach ($file_code as $line_no => $lines)  {  …

Read Now
Check email is valid or not in php

Check email is valid or not in php

Check email is valid or not in php php me email kaise check kare email sahi hai ya nahi wo check kare  how to use filte…

Read Now
Print Week Day in php

Print Week Day in php

How to print week day in php switch case real time example in php switch case <!DOCTYPE html> <html> <b…

Read Now
date convert in php practical

date convert in php practical

This function convert the date to the achievement form date convert in php practical  <?php $val = '2012-09-12…

Read Now
sql view

sql view

In this post includs the sql view  1) view is virtual table  2) up to date real time data Create view:- create view vi…

Read Now
css color

css color

< style >         #p1 {             color : rgb ( 55 , 226 , 43 ); /* Color using names */         }         #p…

Read Now
finding min or max value in php

finding min or max value in php

this example show you to the finding the 3 array find the min or max value . 3 array me se min aur max value kaise che…

Read Now
default constrait in sql

default constrait in sql

create table vishalusrategoogle( id int not null, name varchar(50) default 'default constrait in sql', lastname…

Read Now
date parse in sql

date parse in sql

DATE_FORMAT(abc.dateindb,'%Y-%m-%d')  its parse the date if date 01 or 02 and some like month 01 or 03 its con…

Read Now
check constrait in sql

check constrait in sql

check constrait used to the value range in the column. its allow only certain value. create table vishal( id int not n…

Read Now
Load More That is All