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
css menu issue
Word 2010 Styles / Paragraph Issues
sp_configure and server parameters
redirect after popup
Help needed with query in Access
How to create domain in Windows Server 2008 R2
RAID for read only DB
user logged in
how i connect to sql 2008 from sql studio management 2005
Sql Server Memory used but not accounted for in Task Manager