0
votes
3answers
32 views

Multiple links to the same webpage

I want to make a script which will have generate random links to the same page. I know I can use a random generator for random alphanumeric string but how can I implement that and redirect it to the ...
-1
votes
0answers
33 views

Change records that are already checked PHP

I'm having some trouble changing the records are checked, and check if there are any checked and do nothing <ul class="dropdown-menu pull-right"> <li class="dropdown-submenu"> ...
-1
votes
0answers
36 views

HOW TO SHOW MYSQL TABLE GROUP BY ID OR ETC

I have The Following Table No Date Order No SO No Sales (Total) 1 25-May-2013 7 7 Junaedi 30.000.000 2 24-May-2013 6 ...
-1
votes
2answers
45 views

PHP foreach warning [closed]

I have a table in html that is populated by a mysql backend. I keep getting the warning "Warning: Invalid argument supplied for foreach()" I am using the php foreach function but this is inside my ...
0
votes
0answers
41 views

Can't connect to mySQL database through PHP PDO

so basically I have my php page on in my sites directory in OSX, so it's in local host. I have mySQL running. But whenever I try to connect to my database I get errors. I have tried everything, ...
0
votes
1answer
56 views

How to make a list with nested loops

I am trying to make a list of all the competitions with their competitors (riders). Competitions are saved in tbl_GAME and all the competitors in tblRider. I tried the code below but it didn't work. ...
-6
votes
1answer
48 views

ECHO MYSQL RESULT DISPLAY BLANK PAGE [closed]

I know it must be something simple but I can't do I need display the text into a DIV Like this: <div> <p><font color="#bdbdbd">TEXTO FROM MYSQL</font></p> ...
0
votes
0answers
39 views

Storing and getting HTML from MySQL [closed]

Well, its about that time that I expand my knowledge.. and next is figuring out php/mysql. Currently, I have the ability to design some pretty nice static websites with HTML/CSS... However, thats ...
1
vote
1answer
82 views

Uploading CSV File, PHP/MySQL Query

i have a .csv file that looks like this... Name AC-No. Time State Exception Operation Johnny Starks Depp 1220 4/12/2013 12:45:18 AM Check In ...
0
votes
1answer
18 views

Adding banner between SimplePie feed articles

My SimplePie install is a straight-up linux install. (no wordpress or anything) I'm trying to add a banner in-between my feed articles. For instance if I have 10 feed articles displaying per page, ...
-1
votes
1answer
18 views

How would I go about making a key distributor? [closed]

I want to create a application for my website in which a user will click a button, and receive a key, in this case, a betakey for my game. How would I go about having the distributor give out the ...
0
votes
4answers
40 views

jQuery .animate does not work

I am not sure why but one of the divs, .load_post, but .blog_posts does not animate. I cannot figure out why. Here is my code: page1.php (main page) <!DOCTYPE html> <html ...
-1
votes
4answers
68 views

Why cannot send just one post comment in PHP?

I am trying to write a PHP project.In this site people can share photos by logining and the photos are displayed in the index.php that is the main page of the program.Now I have three database users ...
0
votes
3answers
62 views

My database connection class will not connect to the database

Basically I am trying to create a class to handle Database connections. I have double checked to make sure that my connection variables are correct and they work if I plug them directly into the PHP ...
-5
votes
0answers
58 views

MySQL 5 / PHP .CSV [closed]

[closed][closed][closed][closed][closed][closed]
1
vote
2answers
56 views

use drop down menu to query mysql

Beginner here; I have searched many examples, still need some help. I would like for the user to select an option from a dropdown box, and that option will query a table in mysql. I don't understand ...
0
votes
4answers
85 views

PHP- Fetch from database and store in drop down menu html

I can't seem to get the following code to make a dropdown menu that contains data from a mysql database. The "include('connect.php');" connects to the mysql database and I know it works on separate ...
-2
votes
1answer
52 views

Error Notice: Undefined index appear [closed]

I have three checkboxes ,the user should check one or 2 choices. when I checked 2 choices an error message appear. $workshop1Day1 = $_POST["workshop1Day1"]; $workshop2Day1 = ...
-5
votes
0answers
45 views

PHP AJAX Chat Script [closed]

I want to create a php mysql chat application similar to facebook. So far i have only 1 lead that is : http://anantgarg.com/2009/05/13/gmail-facebook-style-jquery-chat/ This is anant garg's basic ...
2
votes
6answers
67 views

UTF-8 and German characters?

I have problem with German characters on my web site, in html/php part of website i have this code to set utf-8: <meta charset="utf-8"> in mysql, i have this code to set utf-8 SET CHARSET ...
-1
votes
0answers
24 views

How can a user insert data and an image to a marker that they place on map in my website [closed]

my problem is that I want a viewer to be able to place a marker on the map that is on my site. Then the viewer should be able to give information like name, time a description and upload an image. I ...
1
vote
0answers
38 views

Getting contenteditable div's current value and update database

I'm new to web development and I'm trying to create editable database interface. I have got checkboxes in every row and an edit button. I need to update table(in database) when button clicked(rows ...
0
votes
1answer
53 views

Tesing if at least two checkboxes are checked then insert the values into data base

I am using html,php, javascript,mysql and wampserver. I have 3 checkboxes, the user should maximum check two , then I insert the two choices into my database. I have declared 3 checkboxes with ...
-2
votes
2answers
32 views

'How to handle quotes in html page source while storing it in a mysql table using codeigniter?' [closed]

I am using codeigniter for inserting html page source into mysql table. While inserting a text with double quote, it displays unknown characters
-1
votes
0answers
37 views

Variable not connecting to database [closed]

I wrote this code today but im getting this weird bug from it so at the start it tells you that your building level is 0 even though it says in database one. At this point you would think its a ...
1
vote
2answers
29 views

Transfer Mysql info from a page to another page

I am working on a trivia concept for a website of mine. All the question data is stored on a mysql database. I use the following code for the user to submit the answer of the trivia which is ...
0
votes
2answers
45 views

Select Html with php & mysql

I've this problem: <select name="plag" id="plag"> <?php while ($res = mysql_fetch_array($query)){ echo "<option ...
0
votes
1answer
28 views

User login (using sessions) trouble

I'm trying to make a log in system for users to login on my site. For some reason I can't seem to get my code to identify that a user exists, it always thinks the user doesn't exist in my database ...
0
votes
4answers
61 views

Variable invisible outside a function

I have written a query to get customer information from my database but say I want to use it on another page. I don't want to have to copy and paste to the other page to use it. I have looked at a ...
1
vote
4answers
28 views

PHP How to display data from database in specific sections?

I've been doing searches on how to make php output sections but couldn't find anything. Let me explain my project and what kind of help I'm looking for exactly. I'm working on a player database that ...
1
vote
0answers
31 views

How to convert HTML character references in MySQL?

In one old database we have HTML character references like: &#23637;&#35272; how can I convert them into valid UTF8 characters (&#23637;&#35272; -> 展览)? I know that e.g. PHP func ...
0
votes
2answers
30 views

Run a call from a function PHP

i'm building an website using php and html, im used to receiving data from a database, aka Dynamic Website, i've build an CMS for my own use. Im trying to "simplify" the receiving process using php ...
0
votes
0answers
30 views

How to populate select/combo box without submitting the master form (ASP)

I've got a master form on my page, and I want to create onClick events for some of my drop down boxes to populate other drop down boxes depending on the choice made. I know I can't have a form within ...
0
votes
2answers
46 views

HTML table inputting data to a mysql database

I am trying to get a form to input data into my "mysql database" however i am getting an error message and also it is inputting a blank data everytime the page loads. Here is my code: <form ...
0
votes
6answers
62 views

mysql post from html table

I am trying to get my sql to post information from a html form into my database however keep getting: ( ! ) SCREAM: Error suppression ignored for ( ! ) Notice: Undefined index: firstname in ...
1
vote
2answers
65 views

How do I refresh an HTML file when the contents of a different file change?

I have this situation with a device accessing a simple MySQL database using PHP. When I do a search, the results are written in an HTML file. I have a second device (very basic android tablet) that ...
-1
votes
2answers
58 views

how to call a jquery click function by a button generated from ajax file

hi i have a form which appends a table when a user inputs a value for eg. if a user inputs '1' then the values related to '1' will be appended on a table and the table will be appended on my page but ...
-2
votes
1answer
65 views

HTML link with a php action

I am creating a website that stores information of homes like address, city etc. I got the upload to database part done and I got the search the database and display the information done. But now my ...
1
vote
2answers
23 views

Generate form based on form selection

I have a dropdown selection box to generate another select box based on the selection of the first box. I have put an example below. <form action="" method="type"> <select ...
0
votes
1answer
42 views

How to insert tags into database using jquery html and php

I want to insert these particular tags into the database. This is my HTML: <div id="tags"> <input type='text' name='tags' placeholder='Type in topic tags here seperated by commas' ...
0
votes
2answers
41 views

Sorting html table with jquery - form stops working and can't pass new order to php file - help please

I can get my data table to propegate just like I want. I can also pass everything I need to when I click submit. The problem is this: I have dabbled with using jquery to sort the table to make it ...
0
votes
1answer
40 views

Some pages not working after uploading to a server

I have been making a small webshop site with php and mysql. It is working fine locally with xampp, but after uploading it to a server some of the pages doesn't display everything. My site is built up ...
-8
votes
0answers
26 views

put the results of a search query into a drop down menu [closed]

I have a search query that prints the results taken from a mysql database. I would like these to appear inside a dropdown menu as there are too many results and it is pushing the content of the page ...
-3
votes
3answers
90 views

Error insert statement PHP [closed]

I am having a problem with my database handler class, i think. I have a form tag in my index.php file, which calls a function in inc/function.php, which then saves the form data to a table in the ...
-6
votes
0answers
53 views

show data from 3 tables in single page [closed]

I have 3 different tables of player in my game site. On the first table I have all details of players with her game records. I have charges of a game only for loser player l player field in database. ...
-2
votes
1answer
47 views

UTF8 Characters not displayed correctly [duplicate]

In my mysql database i have string with german umlauts (ä, ö, ü). I query them with php/mysql and when displayed on my website, they show up like this: � I have this html in my website: <meta ...
-1
votes
2answers
76 views

how to post value in php one to other page using ahref tag in php html

In this code: <td align="left"><a href="update.php?id='.$od_id.'">' ."Complete" . '</td></tr>'; I generate multiple od_id so when I click on other particular od_id this ...
0
votes
1answer
42 views

how to post database fetch values from one page to anthor page using HTML table

in this code "<td align="left"><a href="admin_order_update.php">' .$row['o_id'] .'</a></td>" i generate multiple o_id so when i click on other particular o_id this o_id post ...
-2
votes
1answer
34 views

play an audio file [closed]

i have a database(MySql) containing fields username,voicename.voice name containing name of an mp3 file corresponding to username. I have to display this database to an html table.That is username as ...
0
votes
0answers
44 views

PHP/HTML Query from Dropdown menu

Below are my create tables, html file that has a drop down menu that has artists, and a php file that based on the artist displays all the title's of albums by that artist. I can't seem to get the ...

1 2 3 4 5 67