3
votes
Should a beginning PHP programmer consider frameworks?
PHP itself is a large language, you should probably find out what PHP can do well on its own before looking into frameworks that abstract you away from the language. But then you might end up like …
0
votes
How to get javascript function data into Php variable
JS is executed clientside while PHP is executed serverside, so you'll have to send the JS values to the server. This could possibly be tucked in $_POST or through AJAX
…
