Hello, How I want to use this <?=substr($row['video_title'],0,20); ?> PHP: substr on here <a href=\"video-izle.php?vid=".$row['uniq_id']."\" class=\"song_name\">".$row['video_title']."</a> PHP: I do not know how to do. Can anyone help me. Thanks
Well, it looks as though you want to do something like this: <? $myVideoTitleVar=substr($row['video_title'],0,20); ?> PHP: And then later, re-use the same variable: <a href=\"video-izle.php?vid=".$row['uniq_id']."\" class=\"song_name\">".$myVideoTitleVar."</a> PHP: Of course, I could have totally missed the pint of what you're asking about...if that's the case, please let us know in more detail what you're after.