39,393 Topics
![]() | |
please guys i need your help , i have got a database with the name of a2354076_db and i have created the table caller users with this code : [CODE] CREATE TABLE users ( P_Id int, username varchar(255), pass varchar(255), email varchar(255), country varchar(255) ) [/CODE] and then i wanted … ![]() | |
please help me! i just installed wampserver2 in my laptop. i want to make my website accessible in another computer which is NOT inside my network. i am inside a wireless network. i put online my wamp and then when i type my WAN ip address in my address bar, … | |
hello , i want to make like this . _ [CODE]$m = $_GET["uion"]; class NewGo { public $username = '$m'; public $password = '1131'; } [/CODE] but its not working . plz anyone tell me the exact correct code ![]() | |
Hi I have a html page with a div and i'm loading data into it every 10 seconds (using jQuery load().) from a php page which is querying a mysql db. This is great but what i want to do is if a value in the table i'm loading into … ![]() | |
what softwares do i need to make me use the PHP in ubuntu? i'm trying to install adobe cs3, it won't work. please help me. i'm new user in ubuntu. please help me. | |
hi all, i am having a page where i can upload images.so now my problem is i hav to view the image that is uploaded and that should display on the web page. My code is uploading an image in the images folder. so now i need to display that … | |
Hi I am a very new php web developer. I studied php, mysql recently. I want to start a php web project. Please help me to find out a free tools (which is very easy) to develope a web application. I installed xampp in my system. Thank you | |
'am a beginner & am busy designing a site that has simple order-form which captures details of a cust and submit them throuth as an email using php, which works fine. my problem is i added 2 list boxes, one(as a drop-down) pre-populated with items-to-order which allows the user to … | |
hi , [B]all i want to delete files after xx days from a folder using php [/B] thnx in adv.. | |
Hi all, I've been asked to do a website for a rural based school. They want an online application for admissions. I have a basic knowledge of webpage design but not advanced enough...here are the following requirements: Aim: to develop an online application management system. 'front end' users can apply … | |
Hi i am new in this website and i hope i have fun with all the members here, I am trying to make code that get all the names of the files from folder and beside each one link to delete it This is the code i have done but … ![]() | |
Today is a long day ! I wish to replace the entire old data from a table with new one. Update is not helping me cause i do not have an autoincrement field. What to do? Thank you in advance | |
Hi, I am having a bit of trouble getting my fetch(PDO::FETCH_OBJ) to print the way I want. I am also unsure if fetch(PDO::FETCH_OBJ) is the right thing to use. Code below. [CODE] $sqlTotal = "SELECT SUM(price) FROM `$user` WHERE `cart`=1"; $total = $conn->query($sqlTotal); $total->execute(); $totalResult = $total->fetch(PDO::FETCH_OBJ); $totalResult = print_r($totalResult); … | |
I have a database with some tables from a restaurant and users can see if they are [I]free[/I] of [I]reserved[/I]. If [I]free[/I] they cand book that table. Now, my question is this: What can i do so that after (let's say 1 day (or any amount of time) after the … | |
Hello, So here is the story: I'm trying to select from two diferend tables ( bank_wire and visa) [CODE]CREATE TABLE IF NOT EXISTS `bank_wire` ( `id` smallint(6) NOT NULL AUTO_INCREMENT, `method_name` char(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'Bank wire', `checked` smallint(1) unsigned NOT NULL DEFAULT '1', `commision` char(255) COLLATE utf8_unicode_ci … | |
I have a site that im trying to put together and need some help with a checkbox. I have a form where the user enters data and when the user is finished they click on the submit btn witch populates the database. I want to enter a check box into … | |
Hello , Im struggling lately to insert a variable to a database table. The total columns of the table are 52 :confused: Here is the insert into database script : [CODE]<?php require_once('../Connections/my_connection.php'); ?> <?php if (!function_exists("GetSQLValueString")) { function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") { if (PHP_VERSION < … | |
Just a quick question. I want to post what is in the database but if the field is empty then i want it to say "No Date" else post the date in the table. At the moment my code only shows the "No Date" even when I know there is … | |
Hi everyone can anybody give me detail information about mission of $_post and $_get and differences between these functions? Also can you give me information about forms and user inputs in php code? Thank you | |
Hi Everyone. I have MySQL db with images in(MEDIUMBLOB); I would to display the images in a gallery fashion with a MySQL select command. Any help would be appreciated. Regards | |
Hi, Was just wondering how do you developers check for vulnerabilities in your scripts. Apart from doing some manual testing, do you use any tools to check for vulnerabilities in your scripts like forms etc? I am trying to look for some software that i can install on computer or … | |
It sais Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given on line74 and I tried a lot of things. here is code [$query="SELECT * FROM specificati,ofertant,suprafete,preturi,manopera WHERE ofertant.id_ofertant=preturi.id_ofertant AND preturi.id_manopera='Montaj parchet' AND preturi.id_manopera=manopera.id_manopera AND specificati.id_camera=suprafete.id_camera "; if (isset($query) && !empty($query)) { echo"<!--" . $query . "-->"; $result=mysql_query($query) or … ![]() | |
hi all, i am new to wordpress , i am using [URL="http://www.deliciousdays.com/cforms-plugin/#download"]cforms II[/URL] plugin in my site. i am getting following error. [CODE]It seems that your ROOT directory for Wordpress is /green. cforms tried to auto-adjust its settings accordingly, however if you still encounter issues with Ajax (form submission & … | |
Hi everyone, can you help me how to add update form in this code? [CODE]<html> <head> <title>Eastern Mediterranean University-Student's ID</title> </head> <body> <h3>Edit Student</h3> <?php $num=$_POST['num']; @ $db = new mysqli('localhost', 'root', 'ilyas1987', 'dau'); if (mysqli_connect_errno()) { echo 'Error: Could not connect to database. Please try again.'; exit; } $query … | |
Hi, Once I fill contact form details and click submit button,It will redirect to next page on that page menubar the backspace button should be disable. I need javascript for this process.................... ![]() | |
Hi, Has anybody use phishtank.com's api? the documentation si pretty poor in their site and they don't reply to emails. The api should help me send a url to phishtank so that they verify if it's spam or not (according to their database) and then return an XML response, and … | |
I am trying to print the results of this code: [code=php]$cmpResult = array_intersect($productList2, $totalProductList); print_r("cmpResult:"); ?><br /><?php print_r($cmpResult); ?><br /><?php[/code] but the output is "Array ( )". How do I get it to output the values of the intersect? ![]() | |
hi, hi i am php programmer. but i don't know how to use AJAX with php. | |
Hi, I am php noob and I have question about the singleton patter in php. I am not sure how the server handles the different users. If I create a singleton class, is that "single" instance shared among all the different users connecting to the server? are there any situations … | |
|
The End.