+ 2
I what make a project on php ?
my project is . first I value from a user and then that value output show by my is horizontally. like this. username Aijaz Ahmed outputs as A i j a z A h m e d by using for loop any one can help me in this ?
3 Réponses
+ 5
example :
$t = str_split('name forename');
foreach ($t as $i){
echo $i.'<br>';
}
if you make a code using this, don't forget to mention that you were helped :)
+ 3
thanks buddy I'll remember this
+ 2
relatively easy? just need the str_split.. thanks @KINGDX