 |
Arrays are common to many programming languages. They are special variables which can hold more than one value, each stored in its own numbered 'space' in the array. Instead of having many similar variables, you can store the data as elements in an array.Each element in the array has its own ID so...
By Sanskruti
Last Message By cyclop
|
15 6,251 |
 |
Many websites generate temporary password or some generate the Activiation code for verification of email. They send the mail with that code in it and so If you wonder how they do this here is a function to do this.
Input : - Length of the Random string you wish to generate
Output :- Random...
By shabbir
Last Message By gkumar
|
6 8,465 |
 |
This is a very simple code and hardly requires any explanations. :eek: If you need any put the post here.
functions.php
<?php
function createsessions($username,$password)
{
//Add additional member to Session array as per requirement
session_register();
By shabbir
Last Message By iMustBeAlien
|
133 111,341 |
 |
Let us say you have some images and want to watermark those images with some other gif, jpeg, png images or with some plain text on the fly in PHP.
It actually looks tough but it is very simple. Let us take a real time example of profile picture option we have here at Go4Expert.com where if you...
By shabbir
Last Message By jhon786
|
6 4,646 |
 |
Ill start by giving the code to the guest book then I will give a step by step on what each part does.
<?php
if(isset($_POST) && isset($_POST))
{
if($_POST != "" && $_POST != "")
{
$F_D = getdate();
$FT = $F_D."/".$F_D."/".$F_D;
By vishal sharma
|
0 32,070 |