JS code into PHP code [duplicate] - javascript

This question already has answers here:
What is the difference between client-side and server-side programming?
(3 answers)
Reference - What does this error mean in PHP?
(38 answers)
Closed 5 years ago.
I can not add JS code into PHP code
JavaScript File:
$.each(data.data,function(i,modul){
tb.append("<p><?php if (!is_dir($rootPath . '/Includes/'" + value.id+ "'")) { ?> <span>Test</span><?php } else { ?> <span>Test</span><?php } ?></p>"});
This line:
' + value.id+ ' = This is a JS code
Where do I make mistakes?
Thanks

Related

Pass a variable from JS to PHP for MYSQL query without ajax [duplicate]

This question already has answers here:
How do I pass JavaScript variables to PHP?
(16 answers)
How can I use a JavaScript variable as a PHP variable? [duplicate]
(7 answers)
Closed 11 months ago.
Hi I need to pass a JS variable to PHP that can be used in a MYSQL query
i tried with
$varPQR = "<script> document.writeln(IdLocalStorage); </script>"; echo $varPQR;
$queryGetPqr = "SELECT * FROM {$wpdb->prefix}sfcwp_pqrs WHERE codigo_queja = {$varPQR}";
didn't work
Use form and hidden input to pass data from client to server

JSON Decode via PHP [duplicate]

This question already has answers here:
How can I get useful error messages in PHP?
(41 answers)
PHP parse/syntax errors; and how to solve them
(20 answers)
How to extract and access data from JSON with PHP?
(1 answer)
Closed 3 years ago.
I have a JSON file, but I can't decode it like any other JSON file.
Where am I making a mistake?
$jsonData = '[[[],[{"file_id":"2_U_3","sub_file_id":"2_U_3_1","option_file":[0,3.44827586207],"file_votes":1}],[],[],[],[]],{}]';
$jsonDec = json_decode($jsonData, TRUE);
echo $jsonDec["file_id"] . " = " . $jsonDec["option_file"][2];
Result: empty screen

I need to get jquery this.val() value into PHP at runtime [duplicate]

This question already has answers here:
Access a JavaScript variable from PHP
(9 answers)
What is the difference between client-side and server-side programming?
(3 answers)
Closed 5 years ago.
Is there a way to get the jquery this.val() read into PHP at runtime?
I have a dynamic push of data and need to run a SQL statement that depends on the jquery value of this.val() - so something like
<?php $sql = "select * from table where id = " . this.val(); ?>
No, becouse PHP can't read user's DOM.
You need to make an ajax request to send the data to the server.
jquery.ajax

C# in Javascript Element on CSHTML page [duplicate]

This question already has answers here:
Mixing razor and java script code for #Html.Partial()
(2 answers)
Closed 6 years ago.
How can I use c# code in a Javascript statement?
This is my code:
document.getElementById('part1').innerHTML = '' +
'#Html.Partial("SelectCustomer.Views")'
' Views';
#Html.Partial("SelectCustomer.Views") and <%= and %> do not work
#Html.Raw("document.getElementById('part1').innerHTML = '' +
#Html.Partial("SelectCustomer.Views")
' Views';");
Don't have razor project on hand to test it. Might need to remove the # from the second Html.

How to get previous page javascript [duplicate]

This question already has answers here:
How to get the previous URL in JavaScript?
(9 answers)
Closed 7 years ago.
echo ("<SCRIPT LANGUAGE='JavaScript'>
window.alert('Succesfully Updated')
</SCRIPT>");
this is my code i want it to redirected in my previous page and had it refresh.
<script>
window.location = document.referrer;
</script>

Categories

Resources