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
What to insert into PHP form to help prevent hacking
Exchange 2007: LOGS vs Storage Group
breaking down Excel cell
IDS/IPS VM on Laptop (Protecting Host)
Find a number in a string - Javascript
Why can't liberals succeed in the media?
.aspx.cs code for adding a textbox entry to "[contains(title, 'TextboxEntry']"
Muliple LIKE Statement?
Moving a child form when a parent form moves
Setting up roaming profiles on Win2K server when using Win7 Pro as my client