we must first create an HTML form that lets users select a file for uploading.
php easy tutorial, a simple php tutorial,easy php tutorial| quick guide for php developers, beginner guide for php,beginner guide for wordpress
Saturday, 11 August 2012
Remove whitespace from both sides of a string with php
//Remove whitespace from both sides of a string in php
function removeSideSpace($str)
{
return trim($str);
}
$yourString=" This is test for the string ";
echo " <br> Before remove the space == ".strlen($yourString);
$yourString= removeSideSpace($yourstring);
echo " <br> After remove the space == ".strlen($yourString);
?>
function removeSideSpace($str)
{
return trim($str);
}
$yourString=" This is test for the string ";
echo " <br> Before remove the space == ".strlen($yourString);
$yourString= removeSideSpace($yourstring);
echo " <br> After remove the space == ".strlen($yourString);
?>
How to Redirect any page with php
<?php
//how to Redirect any page with php
function reDirect2Url($pageUrl) // Write the function code Here
{
if ($pageUrl!="")
{
header("location: $pageUrl");
}
}
reDirect2Url("yourpageurlhere"); // called the function
?>
//how to Redirect any page with php
function reDirect2Url($pageUrl) // Write the function code Here
{
if ($pageUrl!="")
{
header("location: $pageUrl");
}
}
reDirect2Url("yourpageurlhere"); // called the function
?>
Subscribe to:
Posts
(
Atom
)