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
want to move div tag to the far right
2 HWIC-4ESW cards on a cisco router
MYSQL custom Sorting
Bang vs. Dot in SQL statements
Exchange 2003 NDR email question
Learn OTL Scripting
SMC8648T Tigerswitch factory reset
self.close
Showing the performance of VB.NET within Visual Studio 2010
Transpose rows to cols using Crystal Report..