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
sql syntax help in my vba code when primary key field has spaces
Accidentally deleted Exchange Attributes
Cisco 2950G Switch - Port Mirroring
jrxml and jasper
Excel response vey slow
SendMessage
how to simplify this
Laptop seems to think there is media in the DVD-ROM drive
windows 7 will not boot after windows updates last night
Oracle SQL: Propagate Parent value to ALL Children during Tree Walk