WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDESPHP CLASSESCODE SEARCHARTICLES SEARCHPHP FORUMSPHP MANUALPHP FUNCTIONS LISTWEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search


Submit a code Example / Snippet Join us on FaceBook
Submit a code Example / Snippet Submit Your Code
Poker Tournaments Poker Tournaments
Poker Guide for Developers Poker Guide for Developers
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Resources
Web Development Content
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
פרייסז - השוואת מחירים בסופר
ZeroLag.com
Texas Holdem Poker Evangelists

Go Back Add a Comment Send this example to a friend Add this Article to your personal favoritest for easy future access to your favorite Code Examples and Articles. Submit a code example Print this code example.
BACK ADD A COMMENT SEND TO A FRIEND ADD TO MY FAVORITES ADD CODE EXAMPLES PRINT
Title : Simple PHP program which calls other PHP program you can pass the variables to other PHP program : by Raju
Categories : PHP, PHP Options and Info, Regexps, Program Execution Update Picture
Raju Panuganty
Date : Dec 22nd 1999
Grade : 2 of 5 (graded 3 times)
Viewed : 27465
File : program.txt
Images : No Images for this code example.
Search : More code by Raju Panuganty
Action : Grade This Code Example
Tools : My Examples List

Submit your own code examples  Submit your own code examples 
 

/*
********************************************************
                Raju's PHP Program
********************************************************
        
        This simple PHP program which demonstrates you how
to call another PHP program. U can also pass the Parameters
to other program.

Here i am not dealing with the complexities of calling one
php program from other, rather i am demonstrating how u
can make inter program calls.


Here There are 3 programs

1. First program is raju.php in which i am checking the
the codition based on the condition i am calling the
other 2 programs hello.php, bye.php

2. Second Program (hello.php) an Third Programs(bye.php)
there is nothing great in them, i am using echo function
to display the message.


        I welcome ur suggestions and comments. Please
mail me at [email protected]

**************************************************************
*/

/* cut from here */
/* save this as raju.php */

<?php

//assigning value to variable $a
$a = 1;

/*

checking the condition u can check either way ie true or false
condition

*/

if($a == "2"){

/*

to Pass the variables to hello.php give the variables above the
calling php

for example i am passing variable $name
*/

$name = "Raju"
include("hello.php");
//or require("hello.php");

} else {

$name = "Raju"
include("bad.php");
}
?>

/* cut here */



/* cut here */
/* save this as hello.php */

<?php
echo "Hello $name";
?>
/* cut here */


/* cut here */
/* save this as bye.php */

<?php
echo("bye $name");
?>

/* cut here */



How to strip non-alpha characters from a string
Categories : Regexps, PHP
Pageinfo: Array containing page URI, page query string (parameters), request method (GET or POST) and the complete URI
Categories : Variables, PHP Options and Info, Arrays, URLs, PHP
Parse html (title :: meta)
Categories : PHP, HTML and PHP, Regexps
A simple configuration file editor to ease you life in setting up php applications. Reads variables from a given file automatically and displays current value. New value will be written to file after submit.
Categories : PHP, Filesystem, Regexps, Java Script
Parsing Simple Template Files and Data
Categories : PHP, PHP Classes, Templates, Regexps
Making sure a string containes only digits or no digits.
Categories : Strings, PHP, Regexps
Calculate Body Mass Index
Categories : PHP, Algorithms, Regexps
Query2Report : Generating Html, Pdf and Csv Reports from SQL Query
Categories : PHP, PHP, HTML, PDF, Excel
Check for functional file links (broken Files)
Categories : PHP, Data Validation, FTP, Regexps, Arrays
Finding numbers within a string
Categories : PHP, Regexps, Strings
Force file download
Categories : PHP, Filesystem, HTTP, Program Execution
Grab links from a page
Categories : PHP, Regexps, HTTP
Banknote Validation - A PHP class that provides several methods to quickly validate banknote serial numbers of the following currencies: AUD, CAD, CHF, CNY, EUR, GBP, JPY, USD.
Categories : PHP, PHP Classes, Data Validation, Regexps
Form is a utility class for generating html forms. It provides form initialization and regex based data validation (both server and client side) with a convenient interface. This version obsoletes version 1.0a
Categories : HTML, PHP, PHP Classes, Regexps
Execute a command to a string
Categories : PHP, Program Execution, Filesystem