52,566 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for ekseks

I don't know where to start so I just got to ask from the experts :). From my MySQL (database) I got a date formatted mm-dd-yyyy (i.e. 01/01/2010), now from my php page there are 3 dropdown/list menus which are for [B][Month]-[Day]-[Year][/B] and a [B][TextField][/B] then a [B][Submit Button][/B]. When …

Web Development database-design php
Member Avatar for Zagga
0
157
Member Avatar for dontnoephp

hi, i have to write a program that simulates a vending machine: the sale of items,coin counting and change giving. can some1 help???

Web Development php
Member Avatar for Zagga
0
83
Member Avatar for zer0cool

Hello, Here is my problem: I have copied a web site onto my development server. All the images and files are called using absolute paths, for example: <img src="/images/picture.jpg" /> So it's trying to do this: [url]http://www.localhost.com/images/pictures.jpg[/url] When I want it is actually suppose to do this: [url]http://www.localhost.com/client/folder/images/pictures.jpg[/url] How do …

Member Avatar for Zagga
0
158
Member Avatar for niche1

$ct is my array: array(4) { ["a"]=> int(1) ["b"]=> int(2) ["z"]=> int(2) ["c"]=> int(1) } I need to put it in a two column database where "item" is col1 and "count" is col2 where the first row has an "a" in col1 and 1 in col2, 2nd row has a …

Web Development php
Member Avatar for niche1
0
62
Member Avatar for tjohnson13

Hello! I have been searching for a good solution all morning but can't seem to get one! I'm trying to create a form that sends to a different set of email addresses based on what is selected in a drop down menu. While I can make this happen, I need …

Web Development php
Member Avatar for diafol
0
104
Member Avatar for jianwu_chen

I'm trying to put some text which will confuse HTML parser inside the CDATA section for javascript to access. But seems it won't work in both firefox and Internet Explorer. In Firefix, it will treat it as comment, it's still possible to remove the <!-- and --> go get back …

Web Development html-css javascript
Member Avatar for julesmanson
0
1K
Member Avatar for MichaelWClark

I have just developed my first 'large' application in ASP.net. I have developed many smaller web pages and sites and never really had this issue. In VS everything looks crisp and clean and is layed out perfect via CSS. After uploading the code to my server all my alignments are …

Web Development asp.net html-css web-server
Member Avatar for MichaelWClark
0
98
Member Avatar for speakerbug

I am super new at coding PHP, and ive gotten this to work in the past, but for some reason it isn't working now. Can someone tell me what im doing wrong. Thank you so much in advance! [CODE]<?php $email = $_POST['email']; $firstname = $_POST['firstname']; $lastname = $_POST['lastname']; $addressone = …

Web Development php
Member Avatar for Flexor123
0
190
Member Avatar for sem123

Select syntext for database search i have a database and a table one colums with items name des items 1 pen,pencile 2 rubber,scale all are in one column with seperated with coma when search from only pen how it is possible to show me row for 1 whole row like …

Web Development asp
Member Avatar for hielo
0
81
Member Avatar for pooja yadav

Hello friends plz help again How to coding in save button and how to convert the database in SQL Server 2005 in DropDown List becoz in sql take date in mm\dd\yy and in asp.net i m create the form dd\mm\yy? plz help me...

Web Development asp asp.net
Member Avatar for simi pillai
0
140
Member Avatar for rrothfeldt

I keep getting the following syntax error: Parse error: syntax error, unexpected T_VARIABLE, expecting ',' or ';' in C:\xampp\xampp\htdocs\xampp\getFriends.php on line 26 I'm hoping some fresh eyeballs on this will help. I've been puzzling through it for the better part of the day and I'll be doggone if I can …

Web Development php
Member Avatar for rrothfeldt
0
119
Member Avatar for nsandberg

I am new to PHP and I have an application that is suppose to take 6 pieces of information and insert it into the table. I essentially have this application working but the issue that I am running into is that when I select multiple checkboxes it will only insert …

Web Development php
Member Avatar for vibhaJ
0
3K
Member Avatar for private bob4

Hello DaniWeb, I was wondering how I can have a server status in the Title bar. Such as: (Website name) - Server is online! or (Site Name) Server is offline!

Web Development php
Member Avatar for 84hd0ns
0
81
Member Avatar for technical_amit

Hi guys, I am developing an invoice project. I am calculating amount of each section and assigning in grand total. For multiple invoice body section, I am adding dynamic html code using jquery append function. I am successfully added section and removed. When I added new invoice body on click …

Member Avatar for technical_amit
0
1K
Member Avatar for rishabh_pesit

Hey hi all, I am new to jsp,servlets .. i am doing a small project on employee database management. In this I have a form which has various fields. And also buttons for add,delete,update,next and previous. Now what I want is I click on previous it should retreive values from …

Web Development java-jsp
Member Avatar for javaAddict
0
116
Member Avatar for lionaneesh

These are my 2 pages index.php:- [CODE]<?php session_start(); ?> <html> <head> <title>Enter Your Name</title> </head> <body> <form action="hello.php" method="post"> Wat's U'r name : <input type="text" name="name"/> <br/> <input type="submit" value="Next"/> </form> </body> </html>[/CODE] hello.php:- [CODE]<?php session_start() ?> <html> <head> <title>Hey <?php echo $name; ?></title> </head> <body> <?php $_SESSION['name'] = $_POST['name']; …

Web Development php session
Member Avatar for lionaneesh
0
208
Member Avatar for AnkitPasi

Hello, Im an intern at a company.I've been asked to test different open source PHP-based help desk softwares and submit a report on a free alternative to a commercial solution. The report should compare at leaste two popular such softwares(according to me). How do i test such a software and …

Web Development open-source php
Member Avatar for AnkitPasi
0
119
Member Avatar for richman_tck

Hello, I'm having issues with my Boonex 7 community the error im getting is.. PHP Warning: Cannot modify header information - headers already sent by (output started at /mnt/Target01/326394/463756/www.handycappedsingles.us/web/content/langs/lang-en.php:1) in /mnt/Target01/326394/463756/www.handycappedsingles.us/web/content/inc/classes/BxDolSession.php on line 61 PHP Warning: Cannot modify header information - headers already sent by (output started at /mnt/Target01/326394/463756/www.handycappedsingles.us/web/content/langs/lang-en.php:1) in …

Web Development php web-design
Member Avatar for richman_tck
0
432
Member Avatar for ayesha789

Hi , I have 5 quries, each query showing expense of different category. like Lease,Diesel,Security,Electricity, Maintenance. 3 quries using 6 tables and 2 quries using 2 tables means 6 tables used in total. Now I want To Show Expense Using one query so I can Get complete Sum of Expenses. …

Web Development php
Member Avatar for ayesha789
0
85
Member Avatar for ayesha789

Hi, I am using UNION ALL to get Sum of expense of different categories from various tables. Now I got Site against their Sum of expenses but When I make this query as table(tbl2) ans select site,Max(Expense) from tbl2 it shows correct Max(Expense) but first Site id of tbl2. Here …

Web Development php
Member Avatar for ayesha789
0
161
Member Avatar for Dhanapal

Error: ApplicationException was unhandled by user code How to solve this error in ASP.Net YAF Application

Web Development asp asp.net
Member Avatar for RvSon
0
163
Member Avatar for babydol

Is it possible to show the last selected value from the drop down list box after form reload?

Web Development php
Member Avatar for lakshmi_lux
0
77
Member Avatar for chandini123

[B]Why is a null displayed in the first row?[/B]:-/ I want the first row to display the text value given in the textfield(actually i am getting the text value from database) Any help??[code]<html> <head> </head> <body> <form name="form1"> <input type="text" name="txtname"> <input type="submit" value="Click here" name="Click" onclick="fun(this.form)"/> </form> <script> function …

Web Development java-jsp
Member Avatar for javaAddict
0
121
Member Avatar for canterorist

hi! i have problem with this rmdir. How can i remove the directory and the image inside of my dir? this is my PHP code: [CODE] $dir="image/"; $arr=array(1=>"pig.jpg",2=>"animal.jpg"); $x=0; while($x<2) { if(unlink($dir.$arr[$x])) echo "success"; else echo "failed"; } rmdir($dir); [/CODE] but when i run the error occur. [B]Warning: the directory …

Web Development php
Member Avatar for canterorist
0
80
Member Avatar for creperz

Hi guys... ahm im new in php. i really need help with this.. i am making a exam system. i want to put a time limit to my exam page like 20mins and when the user still dont click the next button and the limit reach. it will automatically refresh …

Web Development php
Member Avatar for vibhaJ
0
102
Member Avatar for lwaterfo

Hi, I keep getting this error when filling out my form and calling process.php: Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home3/waterfor/public_html/process.php on line 1 all I did was move around some of the variable names in the php code. It was working fine just a second before that. Here …

Web Development advertising php
Member Avatar for manzarr
0
457
Member Avatar for vishalkhialani

Hi, I am currently making my own template for wordpress and I am using someone elses template as a reference. I came across this code: [CODE]thesis_head::build();[/CODE] I don't know what this code means ? What is :: for ? Cheers, Vishal

Web Development php wordpress
Member Avatar for vishalkhialani
0
156
Member Avatar for chintan9624

Hello guys this forum helped me alone for completing my projects that is y i am going to post one article hope you like it......... 1->create an excel sheet and enter data in that then at the time of saving saving it as a csv format and below is the …

Web Development mysql php
Member Avatar for manzarr
0
139
Member Avatar for nats01282

Hi there, I am trying to use a login and a contact form on one page, but im struggling with the php context [CODE] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <title>my webpage</title> </head> <body> <?php $user = 'admin'; $pass = 'admin'; if ($user != $_POST['username'] …

Web Development php xml
Member Avatar for nats01282
0
107
Member Avatar for gloriak

I cannot get Java script to work on my windows XP, SP3. Any assistance out there. I have checked the settings for Java and all appear to be in order (ie: tools, internet options, etc. All java settings are set to run. I am stumped.

Web Development asp.net java
Member Avatar for gloriak
0
48
Member Avatar for ManishS

[I]hi... I am getting an error:"You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '.1989)' at line 1" please help me removing the errror[/I] [code]<?php include "functions.php"; ?> <html> <head> <title> Register Form </title> …

Web Development php
Member Avatar for metalix
0
109
Member Avatar for mybluehair

I've got a big problem on my site i'm developing. I have a pretty simple session login script, and every page of my site checks to see if the person is logged in. If not, it redirects them to login.php. I've noticed that when I click links on my menu …

Web Development php session
Member Avatar for mybluehair
0
102
Member Avatar for assgar

Title: Comparing arrays Hello I am having a problem getting the difference between two arrays. The first array $list has all codes that can be linked to a specific id The second array $exist has the values select and linked to a specfic id. Both arrays are storing integers array …

Web Development linked-list php
Member Avatar for assgar
0
80
Member Avatar for phplover

Hello, I have a script that works great, basically i have a mysql database that contains information about files; like filename, description, size etc. The information is displayed on a webpage in a nice formatted table. each file has a link next to it and once pressed the script below …

Member Avatar for phplover
0
262
Member Avatar for MrPeanuts

Hello! I am reasonably new to all this web development malarkey and am completely self-taught, so there is loads I still have to learn. A friend has asked me to help him with a site he's making but I'm stuck and I really hope you can help! I want to …

Web Development php seo
Member Avatar for EverWebby
0
149
Member Avatar for smiler89

hello, i am building a website using mysql and php on an apache web server. The site has over 100 index pages for differnt parts and content of the site. one of the problems i am having is i have to write the navigation bars in for each page, and …

Web Development apache mysql php web-server
Member Avatar for EverWebby
0
200
Member Avatar for oliyide

I have a project to implement and it is for a media company. They have a program they air on TV every thursday 5pm. My job is to develop a web application that will allow them upload the same video to the web application and at 5pm when the program …

Web Development asp asp.net c# flash video web-server
Member Avatar for melbenmartin
0
356
Member Avatar for kcgagne

[code] <script webstyle4>document.write('<scr'+'ipt src="xaramenu.js">'+'</scr'+'ipt>');document.write('<scr'+'ipt src="tea.js">'+'</scr'+'ipt>');/*img src="tea.gif" moduleid="Tea Project (Project)\tea_off.xws"*/</script> [/code] I have just taken on the maintenance of an existing site that was built using Dreamweaver. I do not use front-end builders, so the code above has me confused. I understand the scripts, but not some of the other stuff. …

Web Development javascript
Member Avatar for John Inglemann
0
123
Member Avatar for bdicasa

Hi guys, I was wondering if it was possible to call a specific PHP function using AJAX instead of calling a whole page. An example: [code] function MakeRequest() { var xmlHttp = getXMLHTTP(); xmlHttp.onreadystatechange = function() { if(xmlHttp.readyState == 4) { document.getElementById('provinceDiv').innerHTML = xmlHttp.responseText; } } xmlHttp.open("GET", "FindProvinces.php", true); xmlHttp.send(null); …

Web Development javascript php
Member Avatar for tarmin68
0
1K
Member Avatar for Tracie-marie

Hi, I'm self taught but I've got a pretty good grasp on php now. What I want to do is completely separate it from my html....if that's possible. I keep reading about it but everyone keeps referring back to using templates which I don't want to do (unless they're my …

Web Development html-css php
Member Avatar for Tracie-marie
0
159
Member Avatar for shahzadhard

i want to run .aspx page in in my internet browser and he is showing this message file attached what is the problem[CODE]<%@ Page Language="VB" Debug="true" %> <%@ import Namespace="System.Data" %> <%@ import Namespace="System.Data.Sql" %> <%@ import Namespace="System.Data.SqlClient" %> <script runat="server"> Sub Button1_Click(sender As Object, e As EventArgs) Response.Redirect("index.aspx") End …

Web Development asp asp.net display open-source
0
114
Member Avatar for madkat3

Okay, so I'm pretty new to PHP...Call me a newbie, but everything works great if it's completely static, but the problem I have is if I need different results depending on user action. The problem lies with needing to use PHP to take information from files, but otherwise it would …

Web Development php
Member Avatar for madkat3
0
158
Member Avatar for MWE_QUE

I'm going through SAMS Teach Yourself PHP, MYSQL, and Apache all in one and I can't seem to get this example to work, which is used again in the next lesson. I usually type them in by hand as this one, but I've also tried cutting and pasting and removing …

Web Development apache php
Member Avatar for MWE_QUE
0
127
Member Avatar for lwaterfo

HI, I have a form with a huge textarea field and I am not sure how to format the textarea to make it work with php. The small textfields seem to work fine with adding information to my database, but as soon aas I add dropdown menus, a large textarea, …

Member Avatar for lwaterfo
0
93
Member Avatar for willie-abei

[B][COLOR="Green"]Hello everyone, i was hoping i could get help for a search script that displays not just the text results but also an image based on the search query for eg: if you are searching for a book by author or name of a book in the results page it …

Web Development php
Member Avatar for Lsmjudoka
0
186
Member Avatar for nick3592

hi i have done a header redirect to stop from the resending data in most browser but seem to have a problem with showing messages after that's done. After the user finishes doing something he or she gets redirected and there[s a message in a session either error or success. …

Web Development php session
Member Avatar for Zagga
0
129
Member Avatar for backendcode

hello friends, Help me plz.any body can tell me how to pass a value from one page to another page by using a session. After login page. Help me plz login.php <form name="join" action="check_login.php" method="post" onsubmit="return validate_form(join)"> <table border="0px"> <tr><td align="left">E-mail: </td><td><input type="text" name="email" value="" class="form_field" /></td></tr> <td>&nbsp;</td> <tr><td align="left">Password: …

Web Development php session
Member Avatar for backendcode
0
113
Member Avatar for KilluaX

Hi, all Can anybody tell me how to get the current date in a java program? And, I want to insert the date into a database with a date/time format, is there any difference from insert a string? thanks for reply

Web Development java java-jsp
Member Avatar for sangeetha.cse
0
366
Member Avatar for johndoe444

Hi, I was trying to j2ee web service example helloservice. When I was building the simpleclient I got the error: [CODE]wsimport-client-generate-nosecure: wsimport-client-generate-nojvmargs: [echo] C:\glassfishv3\glassfish\docs\javaee-tutorial\examples\bp-project\ma in.xml/../../../../../../glassfish/lib/endorsed [echo] helloservice.endpoint [echo] build/generated/wsimport/client [echo] build/jar [echo] http://localhost:8080/helloservice/HelloService?WSDL [wsimport] Consider using <depends>/<produces> so that wsimport won't do unnece ssary compilation [wsimport] JDK's tools.jar was not …

Web Development java-jsp xml
Member Avatar for peter_budo
0
216
Member Avatar for Cabrakan

Hi, look I've been with a very frustating problem for like 2 or 3 days now, I have advanced but think I've gotten to point where cannot go any further I need some help and the sdn (business objects) forum regarding this topic simply suck, there's only one guy answering …

Member Avatar for musthafa.aj
0
436

The End.