Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


how to retrieve from database..... this format (PRMRMDU402).
firstname= prabhu, lastname=kumar, city=madurai,
pincode=624402....

i want first name first two letters and last name last two
letters ... city first two letters ... pin code last three
letters....

Answers were Sorted based on User's Feedback



how to retrieve from database..... this format (PRMRMDU402). firstname= prabhu, lastname=kumar, cit..

Answer / gaurav

$record = mysql_fetch_array(".........");
$fn = substr($record['firstname'], 0, 2);
$ln = substr($record['lastname'], -2);
$ct = substr($record['city'], 0, 2);
$pc = substr($record['pincode'], -2);

$final = strtoupper($fn.$ln.$ct.$pc);

echo $final;

Is This Answer Correct ?    4 Yes 2 No

how to retrieve from database..... this format (PRMRMDU402). firstname= prabhu, lastname=kumar, cit..

Answer / ajit

SELECT SUBSTRING(`firstname`,1,2) as 'firstname',SUBSTRING
(`lastname`,-2) as 'lastname',SUBSTRING(`city`,1,2) as
'city',SUBSTRING(`pincode`,-3) as 'pincode' FROM
`user_info` WHERE 1

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More PHP Interview Questions

What is empty () in php?

0 Answers  


Write the code for upload a video file in PHP.How will You Play this in Your Page.?

2 Answers   ASD Lab, Convex Digital,


How to list all values of submitted fields?

0 Answers  


Why do we use javascript in php?

0 Answers  


What is session in php why it is use?

0 Answers  


What is csrf token and how will you add csrf token in ajax?

0 Answers  


In php how can you jump in to and out of "php mode"?

0 Answers  


Write a program to display reverse of any number?

0 Answers  


Explain what does the expression exception::__tostring means?

0 Answers  


What is singleton pattern in php?

0 Answers  


What is php7?

0 Answers  


How to check an key is exists in array?

0 Answers  


Categories