0
votes
1answer
35 views

Javascript to PHP in HTML5 development?

So I am designing a HTML5 site and I have some data in textfields for example, "password" that I need to store into the database on the Apache server. So far I have designed a simple HTML5 site which ...
0
votes
3answers
26 views

php Mail sending double content

I am working on a massmail script which sends an e-mail to every e-mail id present in a particular database. But there is some issue. Like I have following database: id email link 1 ...
0
votes
0answers
37 views

My form not getting the information into the database

I am creating a form to upload house property information into the database But the inpormation I am inputing in the form is not being inserted into the database or giving me blank fields. Also it was ...
-1
votes
2answers
23 views

phpMyAdmin Access denied for user ''@'localhost' to database using PHP [closed]

I know this is a common question and I've dug through the questions on this forum but have been unable to solve my connection issue. I've worked with live databases in the past but have never set the ...
-1
votes
1answer
61 views

The right way of using php class? [closed]

$GLOBALS['IPv4_Netmask_Map'] = array( 0 => "0.0.0.0", 1 => "128.0.0.0", 2 => "192.0.0.0", 3 => "224.0.0.0", 4 => "240.0.0.0", 5 => "248.0.0.0", 6 => ...
-1
votes
1answer
47 views

Do I have a configuration issue? [closed]

I have a PHP file with a SQL script that works on one database but not on another. This script queries for data and formats it to export as a CSVfile. These databases are supposed to be set up to ...
0
votes
0answers
24 views

script to extract from a website and create list of words in excel

0 down vote favorite 2 I want to cross list allrecordlabels.com by US state (Alabama, California, New York Mississipi Tennessee, North, South Carolina and Georgia) and genre as following : A1 LABEL ...
0
votes
1answer
60 views

SQL queries with multiple selections

Here's what I have so far: //Insert a CD supplied by a particular supplier and produced by a particular producer Mysqli_query($con, "INSERT INTO CD WHERE suppliername = "Sony" AND producername = ...
0
votes
2answers
33 views

How do I select attributes from multiple entities? using mysql and php

The question is to find names and telephone numbers of all customers who borrowed a particular CD and are supposed to return by a particular date. Here's what I have so far: $sql = "select name ...
-5
votes
1answer
41 views

php calculation of salary from mysql database 2 [closed]

my previous post was closed (dont know why).. Since I am really in need of help. I want to calculate salary of employees. It is based on sales, packages and slabs. For ex my database: **name | ...
-2
votes
0answers
35 views

php salary calculation from mysql database [closed]

i want to calculate salary of employees. It is based on sales, packages and slabs. For ex my database: **name | 500 package | 750 package | 1500 package | Date** Jaymin | 5 ...
0
votes
2answers
38 views

Match delimeter(|) separated values field in mysql select query

In my mysql table one of the field has values like (1|2|3) stored in it. id Skills ---- -------- 1 1|2|3|5 2 2|4|5 3 4|6|3 4 5|2|3|1 I want to search and list the ...
-2
votes
1answer
35 views

Populate dropdown menu from MySQL database?

I have read a few threads but can not figure out the solution to my problem. I want to display the names of different events in my table 'events' in a dropdown menu. The code I have is: <?php ...
0
votes
1answer
43 views

Appending tags to a row in a MySQL db

I'm generally a front end developer (HTML/CSS etc) but currently getting my chops stuck into some back end development for a challenge. Please bear in mind I've only been doing this back-end thing for ...
-1
votes
1answer
24 views

search and display value from database using prompt box in php

hai i want to ask how to search and display value from database using prompt box in php.what i meant is i have button then when user click the button the prompt box will appear and ask for phone ...
0
votes
0answers
33 views

How to replace MySql with MariaDb in WAMP?

I have a Wamp server installed on Windows and it works perfectly. This article at the Slashdot inspired me to migrate from MySql to MariaDb and this question states that I can uninstall mysql and ...
-3
votes
1answer
49 views

generate random image from database php [closed]

I'm trying to create a random image script that selects from an existing list of different users images within a database but i'm having no luck. Anyone knows of a way to do it? Here's the code... ...
-4
votes
0answers
18 views

Having trouble with search [closed]

I have a search text box for the user to enter a product code and then display all data that has that product code, but it's not working and just displays nothing, sometimes the page will just crash ...
-4
votes
0answers
24 views

Advanced crud system with analytics [closed]

I'm seeking a CRUD (create read update delete) script or system that is flexible and advanced. I need the crud grid/datagrid to have a toolbar that allows for simple addition of rows , updating rows, ...
-1
votes
0answers
46 views

Xampp PHP database

I am making this form that will upload property information into a database in XAMPP it was working before but then all of a sudden it does not show the information it just a display an empty field in ...
-3
votes
0answers
49 views

How can i select data from every table in a database? [closed]

I'm trying to select * FROM everytable all of my tables are setup the same and use all of the same layouts. Can someone please tell me how I can select all tables at once? Thanks
-1
votes
2answers
26 views

Database used to populate selection list

i am trying to create a form and in that form have a selection list in which the options are automatically populated with data from a database (namely customer's last names), after which when the last ...
0
votes
0answers
37 views

check a db value and do a action on a video depending on it

I would like to check my database and see a value. If the value is 3, I want to stop the video that is being reproduced on my other page. What am I doing wrong? Is there any other way to do this? I ...
0
votes
1answer
13 views

zend framework 1 zend_db result the same in different condition

My problem is, when i want to read datas from database with zend framework 1, I get the exactly same result even if i use different conditions. My table named 'maps' contains 2 rows: id: 1 date: ...
1
vote
2answers
25 views

not retrieving rows from db after joining tables

I have been creating a simple system for a blog but having some difficulties when retrieving the db after joining 2 tables, like these bellow: table name: articles id category_id title message ...
2
votes
2answers
39 views

Invalid argument supplied for foreach; PDO

I have seen this and this, but neither of these help my situation, this is why I am knowledgeably opening a question that has been asked before. My code is: <? $getGame = ...
0
votes
1answer
16 views

What happens when using PDO->beginTransaction when the database does not support transactions?

I read here on the official documentation that not all drivers support transactions, therefore PDO runs in auto-commit mode, but I read here that running PDO->beginTransaction() shuts off ...
-1
votes
1answer
38 views

PHP save timer on exit

I'm making a test timer which allows users to take a test based on a total timer, or an individual question timer. I need this timer to save to a database when finished to see if it was completed on ...
0
votes
1answer
24 views

How to use a offsite mysql database

i hope this makes since so ill try my best to explain as much as i can i have a personal server that i use for testing my scripts before i put them on my home page in my home page i have a script that ...
0
votes
1answer
31 views

How to limit a form submission rate per user

I am trying to limit a form's submission rate to one per user per 120 seconds. I was thinking about using a $_SESSION variable, but I'm not sure how that would work, and cookies can just be deleted. ...

1 2 3 4 5 242
15 30 50 per page