Tagged Questions
-2
votes
1answer
25 views
echoing php/ mysql within javascript google map script
i want to dynamically get the lat and longitude from my databasse but its not working. here is the code. any help? thanks. the php code is included
var lat = <?php echo $row_maps['lat']; ?>;
...
-4
votes
1answer
44 views
I want to create a form and save into database [closed]
I want to create a form. The form details are here.
whenever a user submit the form details that details store in to my database automatically.
display thank you message and mail that same details ...
0
votes
2answers
45 views
Update database table from javascript
I want to update my database after a condition in javascript. What I do now is something like:
<a href="#" onclick="hello()">Update me</a>
<srcipt>
function hello(smthing)
{
...
1
vote
0answers
37 views
Using Django and Javascript to make a website? [closed]
I want to make a website where people make an account and then play little pop-out mini-games and earn fake money for playing them. Would using Django, Javascript for the games, CSS, and HTML be good ...
0
votes
0answers
24 views
Storing a number of a selected note for loading corresponding content in the php file?
I wrote a cloud-based notes-service ( www.futuristic.bplaced.net/m/de/easynote/ (currently only german)) which works with php. There is a main page which shows you all of your notes with the link to ...
0
votes
5answers
48 views
Separate MySQL results into Divs using while loop
Just beginning PHP to bear with me.
Results I'm trying to achiever:
I have a table of YouTube URL's and MetaData.
Trying to build this:
<div class="slide">
<iframe></iframe>
...
-1
votes
0answers
31 views
JQuery Decimal Field Validation be always greater then existing value
I'm validating one field form with jQuery, code below, I would like to run check on the validation so every entered decimal value must be always higher then current value displayed from MYSQL DB (this ...
0
votes
1answer
23 views
module MySQL nodejs
I have a problem with the mysql module
this is is my part of code for testing connection :
var express = require('express');
var mysql = require('mysql');
var fs = require('fs');
var app = express()
...
0
votes
4answers
390 views
PHP MySQL query stops after 1273459 loops
I am using the script:
$file=fopen('part1.csv', 'r');
mysql_connect('localhost', '~~~', '~~~') or die(mysql_error());
mysql_select_db('Stubby') or die(mysql_error());
while (($buffer = fgets($file, ...
-9
votes
0answers
30 views
How to create variable per each div javascript (online store) [closed]
So guys theres a problem.
Online store.
SQL echoes 10-20 divs which are filled with crap from database.
One of the echoed string is the location of image, whitch should be drawn via javascritpt on ...
-2
votes
3answers
68 views
PHP mysql inside Javascript
I have searched a lot and can't seem to find what I am looking for.
I have a .js field, and I really need help with some php code in side it. I have no idea how to put them together and would really ...
0
votes
0answers
18 views
Node.js express.js mysql eat a lot of memory
Each controller in my app inherits from main controller when the mysql connection is creating. The code:
mysql = require('mysql')
exports.Controller = class Controller
req: null
res: ...
0
votes
0answers
34 views
PHP dropdown to query for another dropdown to query for results
Right! I'm a complete PHP noob but have managed to completely blag/copy/paste/graft together some PHP that queries what I want it to query and return me a dropdown.
Now. I can bastardise this for ...
-4
votes
2answers
63 views
Undefined index: action in C:\wamp\www\mysite\header_top.php on line
Error 1
Undefined index: action in C:\wamp\www\themutual\header_top.php on line 89
On line 89 in headertop.php is:
88 <?php
89 if($_GET['action']!="registerMsg"){?>
90 <span ...
0
votes
0answers
68 views
Can't get JSON results from file in XMLHttpRequest
I'm having problems getting my request filled with the data from a json file... Data is pulled from Mysql DB and formatted in a JSON file in the scripts dir...
Could there be a problem with the GET ...