Skip to content

Username to url redirect [closed]

I have a base system installed with a table that should read a username and url but i am a complete noob when it comes to PHP this is what ive got if someone could help me out so that when the …

How to add TTF font to html2pdf PHP program

I’m trying to use HTML2PDF 4.03 with this code: Now the program die with this: How can I add TTF font to my PDF file? Answer I have managed to add 1 custom font to my setup using the following method. First convert the .ttf file to 3 separate files (.php .z and .ufm) using the following font converter P…

Convert CSV to JSON using PHP

I am trying to convert CSV file to JSON using PHP. Here is my code print_r($result); // I see all data(s) Then I json_encode($result); and tried to display it, but nothing is displaying on the screen at all. All I see is the blank screen, and 0 error message. Am I doing anything wrong ? Can someone help me ?