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
Sending e-mails from different acounts in Outlook using exchange
providing sql username & password to crystal report in asp.net c#
weird effects using ROUND() on REALs in TSQL
Exchange 2007, Entourage 2008 and SSL Cert Errors
Problem deploying VSTO addin in 64 bit Windows Terminal Server environment
Rouding to nearest $100,000
T-SQL help table join
Create Table from Union Query
Query to select based on time
HTTPSessionState Class