I got this result from mysql query using php:
chris123
I want to separate chris
from 123
because I am going to use the value of int for operation.
$char=string('chris123');
$int=int('chris123');
How am I able to do it in PHP? Not PDO. Not so familiar with it. Thanks.