Tagged Questions
0
votes
0answers
3 views
button click + swf player + database IP radio list
how can I make this work: I have a swf player and I get the IP and the port of a radio station list in my database using PHP. The player plays the right station after a SELECT FROM db. But this is not ...
-1
votes
1answer
18 views
Best Coding Language for a Simple Document Sharing Site [on hold]
First, I am looking to create a site where the basic function will be to allow the exchange of documents. So, say for example, if it is a resume or essay-sharing site. I want to allow people to upload ...
0
votes
5answers
22 views
stop inserting data in the database when refreshing the page
I am looking for a way to stop inserting or sending data in the database when refreshing the page.
here is my code:
user_details_page.php
<form action="confirm_page.php" method="post" >
User ...
0
votes
1answer
20 views
How to get SQL data on a new page, based on something selected on a previous page using PHP
I am new to this and am trying to come up with a basic system which will automatically get product names from an SQL database, and then once one is clicked, a product page will appear with the ...
0
votes
0answers
38 views
Sort by date from different table
I really need your help. Please help me out to get this to work.
I have these two tables, the relation between them is the user_id. I accomplished to select who I follow and to display their images ...
0
votes
1answer
33 views
PHP MySQL Inventory System: Multiple Tables and Recipes
I'm a novice in PHP and extremely new to databases, so forgive me if this is a stupid question:
I've built an inventory system in PHP/MySQL that allows someone to (among other things) add raw ...
0
votes
1answer
26 views
JOIN Query for Specific Table
I have the following tables:
Login
IDUser (Int)
username (Var)
pass (Var)
Photos
IdPhoto (Int)
title (Var)
IdUser (Int)
Following
IdUser (Int)
followingID (Int)
I am trying to create a ...
0
votes
3answers
71 views
Creating JavaScript variable within PHP retrieving in JavaScript
Basically what I have is, there is an index file, that links to a JS file, which then pulls in a PHP file.
So in the PHP file I have (along with other code) :
echo " <script ...
0
votes
0answers
15 views
Send form data to external database in wordpress
My client want to have form collecting the user data and save to external database
that is on different hosting of the wordpress site.
I need to have two forms, one is for contact us purpose and the ...
-2
votes
3answers
41 views
Date issue: always shows 01 Jan rather than converting to desired Date [duplicate]
I am fairly new to PHP programming and thus am facing a strange problem, through different forums i was able to learn how to convert dates of different formats into our desired formats, but today this ...
-9
votes
1answer
30 views
Box, which add content to database [on hold]
I want to ask you how to code HTML Box, which add content to database: You type something in blank html box, and it arrives in MySQL database. Thanks.
0
votes
1answer
29 views
Replacing a string with another in the database result using CodeIgniter
I have a database table containing some Permanent Texts which I will be outputting to my user interactions. The problem is that I need to change some parts of these Permanent Text answers when ...
0
votes
1answer
25 views
Like not Working in Stored Procedure
I have written stored procedure using like operator, but i am getting error of mysql.
Here is my query:
CREATE DEFINER=`ecp`@`localhost` PROCEDURE `sp_getTier4CatBanner`(pSiteid int,pTier4 ...
0
votes
5answers
29 views
How to create a proper photo album application in PHP? [on hold]
I've worked with photo albums before, and I've found 2 methods of managing them through PHP:
Store the images in the database
or
Store them in the filesystem
Each has its own advantages and ...
-2
votes
2answers
56 views
Getting Query from Following [on hold]
I have the following query that grabs all of the photos from everyone across the service (world feed):
SELECT IdPhoto, title, l.IdUser, username
FROM photos p
JOIN login l
ON (l.IdUser = p.IdUser) ...