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
Stored Procedure to pass parameter to another SSRS report
Grant all to a user doesn't grant create index privilege
Can you limit the Xfer folder from Symantec Endpoint Protection Client?
How to install CURL on a Dedicated Windows Server
Windows 7 root directory permissions
Access query
Sahi scripting for testing web pages
Access 2007 documenter
Access 2007 --- Run-time 2455: You entered an expression that has an invalid reference to the property LinkChildFields.
Problem with Declaring a Table Variable within a Table Function