PHP - MYSQL
PHP Codes ,Php Examples , Php with MySQL , MySQL Examples
Tuesday, August 28, 2012
Split a data by comma
$Add_array = split("[,]",$Address);
for ($i =0; $i < count($Add_array); $i++){
echo($Add_array[$i]);
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Labels
AJAX
(1)
Answers
(1)
Apache
(1)
Array
(16)
bug
(1)
C
(1)
C++
(1)
Calendar
(1)
Class
(1)
Commands
(1)
Cookies
(2)
Database
(2)
Date
(7)
Days
(1)
explode
(1)
File Upload
(1)
FILES
(1)
firewall
(1)
fix
(1)
Functions
(26)
GET
(1)
GMT
(1)
JavaScript
(2)
localhost
(1)
Mail
(1)
Menu
(1)
MYSQL
(13)
PERL
(1)
PHP
(36)
php.ini
(1)
POST
(1)
preg_match
(1)
Questions
(1)
Script
(1)
SMS
(2)
Solution
(1)
String
(1)
Time
(5)
Time Zone
(1)
Vista
(1)
Wamp Server
(1)
windows 7
(2)
XML
(1)
Popular Posts
send sms via way2sms using php
Send SMS through way2sms using php 1. download one rar file - click here to download 2. extract the rar file 3. ...
MySQL count matching words
MySQL count matching words Count No.Of Words in String - Mysql Syntax If you only need to search for one term at a time, a function w...
Static Menu Script in DHTML
Add an elegant, visible-from-the-start static menu to your site with this script! Both the menu's dimensions and its static loc...
The explode Function in PHP
PHP Code: $rawPhoneNumber = "800-555-5555"; $phoneChunks = explode("-", $rawPhoneNumber) ; echo "Raw Phone Nu...
Time Stamp
Getting the Time Stamp with time() PHP's time() function gives you all the information that you need about the current date and tim...
PHP MySQL Select
The SELECT statement is used to select data from a database. Select Data From a Database Table The SELECT statement is used to select...
PHP Function array_diff()
Syntax array array_diff ( array $array1, array $array2 [, array $array3 ...] ); Definition and Usage Compares array1 against array2...
Object Oriented Programming in PHP
We can imagine our universe made of different objects like sun, earth, moon etc. Similarly we can imagine our car made of different objec...
PHP Function array_count_values()
Syntax array array_count_values ( array $input ); Definition and Usage Returns an array using the values of the input array as keys...
Calendar function in php - free coding
Calendar function in php - free coding example sms.php Add the following script before body of your file <Script languag...
Popular Posts
send sms via way2sms using php
Send SMS through way2sms using php 1. download one rar file - click here to download 2. extract the rar file 3. ...
PHP script for SMS sending
<? /* Simple and easy for modification, PHP script for SMS sending through HTTP with you own Sender ID and delivery reports. You just ...
Creating a registration form using PHP
Creating a registration form using PHP in PHP Form Creating a membership based site seems like a daunting task at first. If you eve...
Date Convertion
if ($_POST['Date'] == "") { $Date = ''; } else { $Date = $_POST['Date']; } list($Day,$Month,$Year)=...
Calculate No Of Days Excluding Weekends
Calculate No Of Days Excluding Weekends Count the number of days between two dates that exclude weekends as non work days Count...
Loading a Drop Down List Using jQuery
Loading a Drop Down List Using jQuery in jQuery To load a drop down list (or a simple list) from a database, there are different wa...
More about forms
More about forms Transmission methods HTTP, the transmission protocol used for the Web, actually defines two methods for sending form i...
login form using PHP
Making a login form using PHP in PHP Form This is in continuation of the tutorial on making a membership based web site. Please see t...
PHP MySQL Select
The SELECT statement is used to select data from a database. Select Data From a Database Table The SELECT statement is used to select...
The explode Function in PHP
PHP Code: $rawPhoneNumber = "800-555-5555"; $phoneChunks = explode("-", $rawPhoneNumber) ; echo "Raw Phone Nu...
No comments:
Post a Comment