what are Implode and Explode functions?

Answer Posted / suraj raut paul

Implode()
this just concatenate the variables and placed into one single variable for example
<form action=<?php $_php_self; ?> method="post">
<label for="dob">Enter Your date of Birth</label>

<select name="day">Day</option>
<option value="1">sun</option>
<option value="2">mon</option>
</select>
<select value="month">Month
<option value="1">Jan</option>
<option value="2">feb</option>
</select>

<select name="year">year
<option value="2012">2012</option>
<option value="2011">2011</option>
</select>

when sending this value in database in single field then you need to join all the values in single variable that is
$dob= implode(array($_post['day'], $_post['month', $_post['year']));

Then it's just concatenated all these values come from the from into single variable $dob.

Explode()
this is the function that is just reverse of the implode.
that it's just split the value given in one varible into array.

Is This Answer Correct ?    9 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is php session and how it works?

524


What is php artisan serve?

517


What is mysql_real_escape_string used for?

555


Is php a programming language?

546


What does the function get_magic_quotes_gpc() means?

501






How to call a php function from html button?

611


Can we run php in apache tomcat?

516


What is form submission?

542


Which variable declarations within a class is invalid in php?

503


Explain what does the unset() function means?

574


Explain PHP?

611


What is the functionality of md5 function in php?

586


What is session in php why it is use?

486


How to register a variable in PHP session?

524


Should I use mysqli or pdo?

515