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
How to extract individual elements out of a long string.
Test Paper
passing multiple values using xmlhttp.send
How to select items in field up to a certain character
Class extending abstract class is not getting instantiated
Configure DHCP on Backup Domain Controller at Remote Site
Acess Run time Error
Using rand() to generate data
Access VBA - send email for each record in a table
Shortcut to run application with local admin privileges.