Passing js variable to laravel model [duplicate] - javascript

This question already has answers here:
What is the difference between client-side and server-side programming?
(3 answers)
Accessing $_COOKIE immediately after setcookie()
(9 answers)
Closed 3 years ago.
I am creating ajax model update request, after this I want to refresh my compacted variable with ajax response. I need to do these tasks without page reload. If anyone have any ideas please share with me.
My code:
success: function(result) {
console.log(result);
var abc = JSON.stringify(result);
Cookies.set('clients', abc, 10);
$('#cookie').html(Cookies.get("clients"));
var abc2 = $('#cookie').text();
<?php $client1 = $_COOKIE['clients']?>
I have been trying to do it with cookies, but as I know, to get recent cookies need reload page.

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

Location Reload Seting the page [duplicate]

This question already has answers here:
How do I redirect to another webpage?
(58 answers)
Closed 2 years ago.
I'm using location.reload in js but I wanna set the page a i wanna reload, this is my function
success: function (data) {
alert("Andamento concluido nos seguinte processos: " + data.ids_processos);
location.reload('/admin/carregamentop/index');
return false;
}
How can i set the page?
There are lots of methods to do this ,use what is most suitable for you
visit https://www.w3schools.com/jsref/obj_location.asp

JQuery does not set variable after $.get [duplicate]

This question already has answers here:
How do I return the response from an asynchronous call?
(41 answers)
How can I get jQuery to perform a synchronous, rather than asynchronous, Ajax request?
(14 answers)
Closed 3 years ago.
Hello gurus in the house. It sounds like a duplicate but I am having a tough time with it since 48hrs past. The question is based on a jQuery. I have a file that i would like to pass into a variable then later use the variable in other places of my code. The file only contains 'I love you'.
<script>
var kk;
$.get('k.txt', function(data) {
kk = data;
}, 'text');
alert(kk); //undefined
</script>
The result of the alert is undefined and it does not work in opera browser. I can alert it like this.
<script>
var kk;
$.get('k.txt', function(data) {
alert(kk); //alert is fine
}, 'text');
</script>
I don't mind if you can show me any other working process apart from this. Please I need this so badly and I have being dealing with this since yesterday. Thank you sirs for understanding.

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

Pass a variable value from javascript value to php variable [duplicate]

This question already has answers here:
What is the difference between client-side and server-side programming?
(3 answers)
Closed 8 years ago.
I would like to pass a text string to a php file,
Here is my code:
var t2 = new Text(figure_defaultFigureTextStr, x, y + figure_defaultFigureRadiusSize/2,
figure_defaultFigureTextFont, figure_defaultFigureTextSize);
t2.style.fillStyle = figure_defaultFillTextStyle;
f.addPrimitive(t2);
Basically PHP is a server side language, you cannot execute it client-side.
So the best bid would be, to send a HttpPost request alongwith the variable value. This would send the data to the server. There you can save the data of it inside a file or what so ever.

Categories

Resources