Tagged Questions
0
votes
0answers
8 views
Exec - shell_exec - translate output to progress bar
I have two functions, one runs a thread in the background with exec() and returns output
function runThread($cmd, $priority = 0){
if($priority){
exec(sprintf('nohup nice -n %s %d > ...
0
votes
1answer
22 views
Ajax timed update issue
Simply I have a menu bar with an animated notification badge made by CSS and implemented by SPAN class on the HTML. this badge should show the count of new messages and disappear if that count is 0. I ...
0
votes
4answers
35 views
How can I pass a value through AJAX to alter SQL search query and return the result to HTML?
I'm attempting to create a web page that will take in a users preference (via checkboxes) for the category of quote they'd like. Upon submission, I use ajax to access a PHP file which, in turn ...
0
votes
0answers
21 views
Issues with AJAX grabbing and saving records
I am working on a form to database save/grab using ajax/jquery. I am having issues saving and grabbing though. My ajax keeps failing and I can't tell why. I know this should work. I movedmy ...
0
votes
1answer
30 views
JQuery Ajax request failing only in mobile browser
There are numerous posts where people ask this.. but it seems like the majority have issues when they use ajax requests for cross domain connection. I simply use this on the same domain and still ...
1
vote
1answer
51 views
How can I provide real-time notifications without tying up resources?
I'm using AJAX to implement long polling on a page which I want to update whenever new rows are inserted into the database. The way this is done is with jQuery's .ajax() calling, for example, ...
-1
votes
1answer
41 views
Can't call Ajax function from my php script, working with live table it
I'm working on this project that uses a live table edit style (works perfectly) but trying to include the twitter style follow and unfollow in one of the columns (The last one precisely) the php works ...
0
votes
1answer
26 views
Find and show the route of the closest markers using DirectionsService by Google Map API v3
Thanks for the help in this forum and i almost complete my assignment in searching the shortest route between a starting point and many markers. However, my distance measurment is simply adopting ...
1
vote
0answers
20 views
why jquery-ajax not working in 000webhost.com [closed]
i've created a php file for inserting values into mysql database using jquery-ajax. but it seems i'm not able to get it working.....here is the live link http://nidhishkrishnan.site40.net/sample.html
...
0
votes
4answers
45 views
PHP Pass variable up the page
I came across someone asking the question,
How can I pass a variable up the page (on the same page?).
I had a think about it but couldn't think of how to do it myself, so I was wondering if it ...
-2
votes
1answer
37 views
Sending form to e-mail
I'm trying to send a form to a e-mail using AJAX.
Problem : I'm not reciving the e-mail.
Obs.: The form is in portguese just ignore the text part ;)
index.html
...
<head>
<script ...
1
vote
1answer
48 views
JQuery AJAX Get request with JSON
I call the following ajax from a form:
$.ajax({
data: JSON.stringify($('form').serializeArray()), //an array [{"name":"myform","value":"entered value"}]
dataType: 'json',
type: 'POST', ...
-4
votes
0answers
27 views
Toggle selection then pass value to PHP [closed]
I am new to jQuery. What I want to achieve is the select/unselect capability then update the MySQL database.
I want the user to be able to select an item, pass the value of that item to the MySQL ...
-1
votes
0answers
25 views
data do not appear when it get back by the ajax [duplicate]
i have an error the php data do show when it rturne by the ajax but it i do an alert the data appear
i have a php code that related to a database after the running of the code everything work as ...
0
votes
0answers
31 views
i can not get back data from php to ajax
i have a php code that related to a database after the running of the code everything work as it should but when it comes to getting data back to the ajax the system do not work ...
means it must ...
0
votes
1answer
52 views
photo not displaying after making php call
I am trying to retrieve some data from a database using php, then I add the data inside json_encode array to be sent to my other php file so that the contents could be displayed on a site. currently ...
0
votes
1answer
34 views
Create an accept or deny action to a friend system using php mysql ajax jquery
i have a friend request system that allow users to send a request to others and i have a accept or deny button . but the problem is that there is something in the code that is not write and make the ...
0
votes
3answers
26 views
php paths differ between ajax use and php use
I just stumbled upon a (at least for me) new weird behavior of paths while using php functions with pure php or ajax calls.
If I use just php the path in the php function is like:
...
-1
votes
1answer
30 views
How can I read url hash to now which page content I should get from database?
What I'm trying to do is this:
if the link entered is, per example, "www.mywebsite.com/mypage.php#subpage5" ,
I want to save "subpage5" to a variable so I can use it to load respective content from ...
-3
votes
2answers
43 views
Fetching data into drop down from php through ajax
Okay i have to drop down boxes, now when the the selects an item in dropdown box A, it should use that selected value as a parameter within the php and use the result of the query to populate dropdown ...
0
votes
1answer
27 views
Reload previous link on click-event of back button of browser? [duplicate]
i am developing one website in which main content is getting load by jquery ajax according to selected menu item.
on selecting any menu item, url get changed according to this pattern:
...
1
vote
3answers
61 views
PHP AJAX Postback with JQUERY
me again, i'm really getting into php now i just need to know a few things first. First of all i'm trying to do a postback to a the server without reloading the client page. Here's an example of what ...
1
vote
2answers
45 views
All Three Forms Get Empty in Single Click
I have Three forms in a page with different submit button and all HTML are properly closed.
all forms have different value..now problem is when i press submit button of any form for store value in ...
0
votes
4answers
44 views
submitting a login form using ajax
I have this javascript in one of my forms.
This one is the login form
I get the URL from the form itself
I'm using API style, ("not sure if I got the concept right")
but I will attach the code down
...
1
vote
1answer
57 views
How can I successfully implement a “Remember This Action” routine?
I am really having a difficult time getting started with this task.
I have 2 forms on same page.
The first form provides a search box for users to enter one of several search filters like Address, ...
0
votes
2answers
46 views
How to return dropdown menu to the default option based upon another menu?
I built country and city drop down menus with AJAX in PHP. They work fine. But the problem is that I want if select any country and after this select the option "please select" the city option return ...
1
vote
2answers
59 views
ajax request gets blocked until the server return the response
i am sending ajax request from html page using jquery to send the bulk emails and fetch the data from the server.
here is the code to send request for bulk mail
var sendReq = $.ajax({
...
0
votes
4answers
53 views
Onclick save textarea content into dtabase and Display that content in another page
I am using Ajax to save textarea conent in database:
$("#update").click(function(e) {
e.preventDefault();
var ttle = $("#title").val();
var text = $("#prjdesc").val();
var ...
-2
votes
0answers
63 views
Why my background is not changing while using pagination and success function
i am working in an online portal where i am displaying all list of questions by doing pagination using jquery with php and mysql. I am able to list all the number of questions. Now all i have is that ...
0
votes
2answers
32 views
ajax updating a class element
I have a shopping cart with a list of items in the cart array. When one is removed, it updates the cart through ajax, however the item number in the array, for each shopping cart item, will not update ...
0
votes
2answers
62 views
JQuery .click() triggers after the second click only
I'm trying to use JQuery load() instead of javascript ajax. I have multiple of ids generated for each DIV with php loop.
When creating a JQuery function like below I pass the generated ids of divs ...
2
votes
1answer
66 views
jQuery, Ajax, PHP two checkboxes
I can't get acces to input checkbox_material. It's something wrong with my code. Please help me. My textarea workes fint, but checkbox_material never begin set. Please help me to figure out what the ...
0
votes
1answer
52 views
Load CF7 Form via Ajax
i would load via ajax the content of page that have inside the shortcode of one of my form generated via CF7 Plugin.
When the content is rendered the shortcode is not processed and come print as text.
...
3
votes
1answer
81 views
Using jquery ajax to update dynamically created image by GET
My current working situation looks something like this:
<!-- collect user info -->
<form method="GET">
<input name="param1" type="text" />
<input name="param2" ...
0
votes
1answer
51 views
How to continue the previous ajax action after login
I have a row displaying in a php page. Each row is having a seperate "like" button.
To like any row user should login first.
Now, if any user click on any like button, & if user is not logged In, ...
0
votes
0answers
72 views
jQuery AJAX: PHP does not echo string to jQuery.ajax()
I am fiddling around with PHP, jQuery and AJAX making a simple email subscription form that inserts the email address onto the MySQL server.
Here is the jQuery code:
$.ajax({
type: ...
0
votes
0answers
34 views
Photo upload with javascript
I want to upload photo via Facebook graph API in Javascript. I have php file in which i have all the necessary stuffs which uploads photo to users wall and album too. What i really need is that i want ...
1
vote
1answer
34 views
My Post and Session's php script for wordpress not work online but only in local
I'm working on a wordpress plugin page that allows the user to perform a search on some custom posts. The search form is based on a script ajax and when you click on the search button, a script jquery ...
0
votes
0answers
105 views
Jquery Pagination page number limiting
I have a functional pagination I built but I now have an issue where the amount of data returned is making the pagination large. I have read through a lot of posts about this issue and havent found ...
1
vote
6answers
87 views
Jquery ajax POST response is null
I have a js script that does an ajax request and posts the data to a php script, this script with then echo something back depending if it works or not.
here is the JS
$(document).ready(function(){
...
0
votes
1answer
29 views
In firefox while fetching the data for CORS We can use only jsonp or script but if cant get data then it shows syntax error
php code
<?php
$data = trim(api_get('threads',array(),'JSON'));
echo $_GET['jsonp_callback'] . '(' . $data . ');';
?>
js code
<script>
$.ajax({
url: ...
0
votes
4answers
81 views
Jquery Ajax POST request failing
could someone tell me why this request doesn't execute the success code?
$(document).ready(function(){
var post_data = [];
$('.trade_window').load('signals.php?action=init');
...
0
votes
2answers
38 views
Ajax POST Requests return int instead of string
I have the following JS code:
var dataString = "action=validateUsername"+
"&username="+usernameRegi+
"&lang="+lang;
$.ajax({
type: "POST",
url: "function.php",
data: ...
0
votes
0answers
31 views
AJAX Post Data Formation
I'm trying to send data to a php file on my server. This is the inside of a function called send(message). I've already used this method to successfully send and receive other data. When I try to use ...
0
votes
0answers
22 views
Showing More Entries Grabbed Via PHP Recursive Folder Scan With Jquery
I have PHP which scans recursively a certain folder in the server to grab video files and related poster images, as well as folders names which represent categories. Then it displays the results ...
0
votes
1answer
59 views
variable overwrite when reading from database
I have a meny.php file who loads in with ajax the selected link to the div with id=content as you can see before the footer is included. This code is working and it´s nothing spacial with that. I just ...
-1
votes
2answers
54 views
jQuery: Change an element value after Ajax Call
I am trying to change the value of a span after using jQuery.ajax.
JavaScript
$(document).on('click', '.kssico', function(event) {
var for_uid = $(this).parents("li").attr('data'),
...
2
votes
3answers
39 views
AJAX update database
Sorry for not stated my problem. Actually I want to update my data in database.
But the problem now is even i tried to choose approve or reject the ajax still won't update.
I am new in ajax and try ...
5
votes
4answers
79 views
making script preformance more efficient
I have a script that makes thumbnails of the pictures in a directory. But it's execution takes too long (about 170 images in the directory).
The script is called by ajax request. After 70% ...
1
vote
2answers
51 views
POST request not working using JQuery AJAX
I am trying to use JQuery AJAX to allow the user to input information into a form in a pop-over box, and then the information gets added to a MySQL database.
However, for some reason, when I use the ...







