There is no function in PHP equivalent to VB or ASP’s left. There is a more robust function called substr. Here’s a function from the forums that replicates the functionality.
function left($string, $count){
return substr($string, 0, $count);
}
There is no function in PHP equivalent to VB or ASP’s left. There is a more robust function called substr. Here’s a function from the forums that replicates the functionality.
function left($string, $count){
return substr($string, 0, $count);
}
Handy reference. Who would have thought April was the best time to buy laptops.
http://lifehacker.com/5736625/the-best-times-to-buy-anything-in-2011
Handy function to remember:
|
1 2 3 4 5 6 7 8 |
SELECT * FROM orders AS o CROSS APPLY ( SELECT linenotes + ',' FROM orderLines AS ol WHERE ol.orderID = o.orderID FOR XML PATH('') ) temp ( listOfLineNotes ) |