When I run the code like this
new CanGelis\PDF\PDF('C:\xampp\htdocs\assessment\wkhtmltopdf\bin\wkhtmltopdf --cookie PHPSESSID u5ap7dnanp5be7gvfmpdr6sbrc');
It works absolutely fine
However, when I do it this way, my php goes in infinite loading
test = session_id(); $link = "C:\\xampp\htdocs\assessment\wkhtmltopdf\bin\wkhtmltopdf --cookie PHPSESSID "; $link = $link.$test; new CanGelis\PDF\PDF($link);
Am I doing something wrong? or how can I achieve this?
When I run the code like this
new CanGelis\PDF\PDF('C:\xampp\htdocs\assessment\wkhtmltopdf\bin\wkhtmltopdf --cookie PHPSESSID u5ap7dnanp5be7gvfmpdr6sbrc');It works absolutely fine
However, when I do it this way, my php goes in infinite loading
test = session_id(); $link = "C:\\xampp\htdocs\assessment\wkhtmltopdf\bin\wkhtmltopdf --cookie PHPSESSID "; $link = $link.$test; new CanGelis\PDF\PDF($link);Am I doing something wrong? or how can I achieve this?