Microsoft
Software
Hardware
Network
Question : Sort elements after explode in php
Hello Experts!
I get just two elements after 'explode', but not sure how to sort them, I have this:
$no="211/09";
$each = explode("/",$no);
and I need a code to get this:
$x1=211;
$x2=09;
Thanks for any help
Answer : Sort elements after explode in php
Simply this:
<?
$x1 = $each[0];
$x2 = $each[1];
?>
Bye
Random Solutions
Extracting information from jBASE
SBS 2008 Service Pack
IOS versions
Locking cells on an Excel Spreadsheet
Disable Catch all on Exchange 2007
Key Press Event
How to get all child class or classes that implements an abstract class?
servername in domain
mstsc
Can I assign two different ID:s in the same <td>?