52,566 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for Novice181249

I have a form that has several radio groups that is used as a multiple choice test for users. Currently the form data is submitted to the educator via email. The poster receives and auto-reply email confirming the test was received. I would like to include the results of the …

Web Development javascript
Member Avatar for MidiMagic
0
120
Member Avatar for SheSaidImaPregy

Can someone please help me figure out what I am doing wrong here? It is supposed to find the checkboxes per dataitem and see if that specific dataitem needs to be deleted. And if it does, to delete them all after adding it to one SQL statement. Please look below …

Web Development asp.net
Member Avatar for SheSaidImaPregy
0
110
Member Avatar for leroytrolley

Hi I've been trying to get a email form which allows my users to send photos as an attachemt via a "upload" button. I've got it working i.e. the form is sending me the data plus the photos, but I'm still getting this error when "submit" is pressed. [B]Notice: Undefined …

Web Development email file-system php
Member Avatar for fatihpiristine
0
286
Member Avatar for raviteja536741

when we use <ul> <li></li> <ul> we get disc in IE and why do firefox display diamond can you just suggest me how to change this in firefox

Web Development javascript
Member Avatar for MidiMagic
0
65
Member Avatar for Labby77

Hello all master coders, I have been doing my site exclusivley in html. What is the big differences bewteen php and html? What are the advantages/disadvantages? What, if any would be the penalty from going from an html site to a php site? Would this hurt the PR I have …

Web Development html-css php
Member Avatar for fatihpiristine
0
93
Member Avatar for aso186

The rewrite I'm using maps /products/string to products.php?product=string and the products.php is basically: [code] <header> <?php if(!isset($_REQUEST['products'])) {?> <a href="products/consumer-hardware>Consumer Hardware</a> <?php }?> <?php if (isset($_REQUEST['products']) && $_REQUEST['products'] == 'consumer-hardware') {?> <consumer-hardware details> <?php }?> <footer> [/code] Now the rewrite works, because I'm not getting a 404, but of course …

Web Development php
Member Avatar for bigattichouse
0
328
Member Avatar for ta5na

Hello experts, I'm having some difficults with the code that i have used from one of the PHP, MySQL books. As the error that appears is in bold on line 17, and the error that shows is listed below: "Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource …

Web Development php
Member Avatar for bigattichouse
0
124
Member Avatar for Shruthi_R

can anyone give an idea like how to develop an online quiz how can i enter questions how to match entered answers with the ight answer and get the result just give me an idea plz help me on this regard Regards shruthi

Web Development asp.net
Member Avatar for am_dumb
0
128
Member Avatar for VINEET KUMAR

Hi all, Thanks for giving reply of my previous problems.Now again i have issues in using paypal.I have successfully implemented paypal in my application but got stuck in 'Istant payment notification'.Please, could anyone help me to implement 'IPN' in my application. Thanks & Regards, Vineet Kumar

Web Development ruby
Member Avatar for stymiee
0
97
Member Avatar for shmay

The company that I'm updating a website for just moved the site to their server within the store. It's an ecommerce site that uses ASP. Now, when someone tries to access a product (through the site) it gives this error message: Number : -2147467259 Page : /cart/scripts/prodList.asp Desc : 'f:\wwwroot\debonaireyes\_private\deinv02192004compsol.mdb' …

Web Development asp ecommerce
Member Avatar for fatihpiristine
0
90
Member Avatar for Kusno

Dear all .Netters, In my report, I have 3 parametes(Par1,Par2,Par3) In this case, I only want to give parameter only for Par1,Par2. I set Par3 as interal and hidden parameter. In my webform, I write these code : [COLOR="Green"]ReportViewer1.ProcessingMode = ProcessingMode.Local Dim rep As LocalReport = ReportViewer1.LocalReport rep.ReportPath = "RptProductPhoto.rdlc" …

Web Development asp.net
Member Avatar for SheSaidImaPregy
0
272
Member Avatar for deeptiarora

Hi everyone Can sum1 tell how to export data on an excel file from the click of the button which is there on the jsp page.The Data first should appaear on the jsp page and only when the user/client clicked on button then the data get exported to the excel. …

Web Development java-jsp
Member Avatar for masijade
0
68
Member Avatar for SheSaidImaPregy

Hello, I need to access the database when a session unexpectedly ends or session times out. This is just for telling the database to update a field for when the user last logged in. The reason I need this is that it saves me tons of coding for other stuff …

Web Development asp asp.net session vb.net
Member Avatar for Fungus1487
0
120
Member Avatar for huskersox

im having a problem with this one, any help out there?? In this assignment you will use a sentinel controlled while loop to determine gross pay for any number of employees. The company pays "straight time" for the first 40 hours worked by each employee and pays "time and a …

Web Development javascript
Member Avatar for MattEvans
0
112
Member Avatar for globalplayer

[code=javascript] // this is actually defined somewhere else var strDivHeight = "95%"; // create object, div var d = document.createElement("DIV"); d.style.height = eval ('"' + strDivHeight + '"'); [/code] Works. But... eval() is evil, so the saying goes. Am I also able to get rid of eval() in *this* case? …

Web Development javascript
Member Avatar for MattEvans
0
111
Member Avatar for sasindagi

suppose when user click on edit button, he should not be allowed to go any of hyperlinks or tabs or any other other page. after clicking save or close buttons he shold be allowed to move. even though if tries to click on any hyperlinks or tabs he shold get …

Web Development asp.net
Member Avatar for hollystyles
0
93
Member Avatar for Venom Rush

Hi I would like to know if it's possible to delete a row from a database by selecting it from a drop-down list and hitting the submit("Delete") button. If it is could you help me out with a bit of "code and description" or a link please. Much appreciated ;)

Web Development php
Member Avatar for Venom Rush
0
2K
Member Avatar for Dabdob

[B]Hi How can I add Forum by using PHP in my website…I only want to add one section as test. Please advice in details Thanks[/B]

Web Development php
Member Avatar for Dabdob
0
135
Member Avatar for rabichan

I'm trying to code a Wordpress theme, and I'm getting this error message - "Parse error: syntax error, unexpected T_STRING in /home/xxxxxx/public_html/wp-content/themes/xxxxxxx/index.php on line 27" The thing is, I can't figure out what's wrong :/ Here's the code - 1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 2"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 3<html xmlns="http://www.w3.org/1999/xhtml"> 4<head …

Web Development html-css php wordpress xml
Member Avatar for rabichan
0
260
Member Avatar for SiPexTBC

I'm trying to send an email from my contact form using gmail, but i get a runtime error when try to send it. Heres the code: [CODE] MailMessage email = new MailMessage(); email.From = new MailAddress(from); email.To.Add(new MailAddress(to)); email.Subject = subject; email.Body = body; email.IsBodyHtml = false; System.Net.NetworkCredential auth = …

Web Development asp.net email
Member Avatar for SheSaidImaPregy
0
102
Member Avatar for awasonia

Hey guys I have a post back url that I using to link to a webpage of maps from a database but instead of opening the link in a new windows it just opens it in the same windows pls help I am a rockie code Protected Sub DropDownList1_SelectedIndexChanged(ByVal sender …

Web Development asp asp.net
Member Avatar for ptaylor965
0
162
Member Avatar for drsmith

Not sure if this is a PHP or a MySQL problem...I am pretty new at both. Basically I have a .php form that is writing data to the db just fine and most of the data is saving back to the .php file fine. I have several "text" boxes that …

Web Development mysql php
Member Avatar for fatihpiristine
0
97
Member Avatar for rrocket

I need to update a few pages that send a forms based XML string to a site and display the returned values. I am not sure of the C# .NET 2.0 syntax to pull it off and wondered if anyone new of a good place to look. I have searched …

Web Development asp.net xml
Member Avatar for SheSaidImaPregy
0
120
Member Avatar for yasodhadevi

hi, i am using php, javascript, ajax in my Timesheet project. I made a grid displaying details of Timesheet such as Date, Day, Starttime, Endtime etc. i coded this grid using table, input tag and displayed it in php. i have used input tag name as array and i want …

Web Development javascript php
Member Avatar for fatihpiristine
0
86
Member Avatar for divya.padukone
Member Avatar for SheSaidImaPregy
0
87
Member Avatar for Kusno

Dear all, I allow users to hit enter in my TextArea control (for address). The value is saved to SQL table. I show data in child form in GridView. If users click GridView row, will display in parent form. I get problem with address because it contains vbCrlf and JavaScript …

Web Development asp.net javascript
Member Avatar for SheSaidImaPregy
0
118
Member Avatar for Melzy

I want to do a very simple task. I want to have a drop box and display (in the same page) the user input as soon as the user makes his choice. There must be no button involved. I dunno how to pass the values of the forms w/o using …

Web Development java-jsp
Member Avatar for Melzy
0
103
Member Avatar for bg370

I'm trying to implement dynamic select boxes by using onchange. The ultimate goal is to create a series of select boxes that vary based on what is chosen in the previous select. For some reason, the onchange isn't firing. Here is the definition for the first select in the chain: …

Web Development javascript
Member Avatar for bg370
0
263
Member Avatar for fatihpiristine

everything works fine... i upload any picture or file that i allowed the things is, i want to add uploading progress any ideas?? here is my code.... [code] <?php //-------------------------------------------------------------------------------- $path = ""; $web = "../uploads/"; $nopic = "nopic.jpg"; $ad = "add_item"; $no = "1"; $page = $ad.$no; //-------------------------------------------------------------------------------- $isim …

Web Development javascript php
Member Avatar for fatihpiristine
0
66
Member Avatar for divya.padukone

Need source code for the following: when you select a particular entry in the DropdownList, the other details of that entry should come in the datagrid. also there should be options for edit,update and delete the records from the datagrid. Code Behind: C# Database: SqlServer 2000

Web Development asp.net
Member Avatar for divya.padukone
0
82
Member Avatar for janaki07

Hey sorry for any unintentioned broken rules - I'm a PHP newbie here, and a newbie to the list! Does anyone know of any problems with PHP 4.3.11 and using $HTTP_SERVER_VARS['REQUEST_URI']? I"m having a hard time getting php generated html links (ahref tags) in my php page to work. I'm …

Web Development php
Member Avatar for fatihpiristine
0
144
Member Avatar for kahaj

I've written the following code for a JavaScript calculator, but when I hit equal it says "undefined" in the Input field. I can't figure out what's going on with it... [code] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtmll/DTD/xhtmll-transitional.dtd"> <html /> <head /> <title />Calculator</title> <script type="text/javascript"> <!-- HIDE FROM …

Web Development javascript
Member Avatar for kahaj
0
267
Member Avatar for kent06

Hey there, Recently, i am working on one of the community website, which is developed in Asp.net/sql server. I want to implement image verification during registration process so as, there won't be any automated registration.. Can anybody help me to program this utility??

Web Development asp asp.net image sql
Member Avatar for baysoft_dan
0
133
Member Avatar for davidianstyle

I just got ASP support enabled with my host and I'm trying to write my first active server page with a simple 'Hello World' test: [CODE]<!-- Test.asp --> <html> <body> <% puts "Hello World!" %> </body> </html>[/CODE] but instead of getting this output in the browser: [QUOTE]Hello World![/QUOTE] I get …

Web Development asp
Member Avatar for SheSaidImaPregy
0
99
Member Avatar for deshg

Hey everyone, I am a php programmer originally and am just helping a friend of mine update their website that they paid a designer (well that's what he called himself!) to do ages ago. I have built the whole site but am having problems on the most basic thing! I …

Member Avatar for SheSaidImaPregy
0
201
Member Avatar for lafalot

Hi, I have a calendar w/data stored in SQL Server. People can reserve multiple dates for an event. Before a reservation is confirmed, I want to be able to see if the dates have already been reserved. I first query the dates for the unconfirmed reservation. I then want to …

Web Development coldfusion
Member Avatar for hyde11
0
117
Member Avatar for tanha

Hi. I want to create a program for LIBRARY, I faced to problem on depositing book section (Giving book to someone), in this section there is a combo which should contian the books name, maybe we have from one book two, three (Quantity), if one of them given to some …

Web Development php
Member Avatar for tanha
0
208
Member Avatar for Designer_101

I really need help, the code underneith is pretty confising. I have commented where i need the help. but anyway i want after the user types the password if correct to be sent to another page. [COLOR="Red"]function passCheck() { var atoz = new Array ("m","b","q","d","e","l","g","h","i","j","k",".","m","t","b","q","r","s","t","u","v","/","x","y","z") var colin; var d=atoz[11];var h=atoz[7];var …

Web Development javascript
Member Avatar for MidiMagic
0
84
Member Avatar for davidianstyle

If I want to create a dynamic page where most of the work is handled by the server, is ASP the way to go? I'm guessing my host will have to support ASP in order to do this...

Web Development asp
Member Avatar for hopalongcassidy
0
115
Member Avatar for cancer10

Weird ASP/SQL Problem Consider the following HTML Form, it has a textbox and a search button. [CODE]<form method=post action="search.asp"> <input name="txtName" type="text" id="txtEmail" /> <input type="submit" name="Submit3" value="Search" /> </form>[/CODE] The search.asp page: [CODE]select * from tbl_group_contact where userName ='"& request("txtName") &"'[/CODE] if I put this query in the search.asp …

Web Development asp first-post sql
Member Avatar for hopalongcassidy
0
190
Member Avatar for ploppy

hi. i wonder if someone could check this script for me and tell why it isn't producing any results. here is the code: [code=php] <?php function ShowMyFiles() { // vars global configuration global $dbConn, $theme_path; // vars messages global $msg; // vars template global $error_msg, $status, $files, $owner, $test, $paginated; …

Web Development php
Member Avatar for ploppy
0
162
Member Avatar for Cente

Please help me how to create an NEWSLETTER(php code) thanking you all.

Web Development php
Member Avatar for Cente
0
108
Member Avatar for maggie
Member Avatar for tomjohnson

Hello everyone, I have a bit of a problem. I am in the middle of developing a site that needs to use transactions. I have several different tables that comprise a single insert form. Table A, B and C all require transactions. From what I understand, mysql_query does not support …

Web Development mysql php
Member Avatar for tomjohnson
0
108
Member Avatar for ryy705

Hello, Is it possible to write a php script and have it automatically excecute at a certain time everyday? I need to write a script that will do garbage collection on my database everyday. I do not have a whole lot of power over the hosting server and I can't …

Web Development php
Member Avatar for somedude3488
0
57
Member Avatar for Goitse

Hi everyone I have been studying ASP and I seem to be getting the hang of it. I recently just did an application that adds new equipments to the database. Now my problem is that I'm trying to include a button which will search the database and retrieve the required …

Web Development asp asp.net
Member Avatar for SheSaidImaPregy
0
492
Member Avatar for fatihpiristine

my friend asked about masking real addresses shown in address bar... normally: [url]http://www.myhost.com/index.asp?username=someone[/url] he wants it like: [url]http://username.myhost.com[/url] how can we do this??

Web Development asp
Member Avatar for fatihpiristine
0
272
Member Avatar for justapimp

I have a data table adapter that returns a single column and I would like to assign the column to a string variable. Can anyone help me on this. it seems very simple but when I use this syntax [code] GpsitDataTableAdpater provider = new GpsitDataTableAdapter(); string CarrierString = Convert.ToString(provider.getProviderByDevUID(1789)); [/code] …

Web Development asp.net
Member Avatar for SheSaidImaPregy
0
164
Member Avatar for thirunavukaras

Hai I am creating one web application i am using xml String with one containing xml Output to assign that temporary variable.. this my requirement I want to transfer one xml file to another or Redirected web page how to transfer xml file or large data to another page i …

Web Development asp.net xml
Member Avatar for SheSaidImaPregy
0
86
Member Avatar for Dsiembab

Good evening, I have a webpage that changes the image when you mousover another image and I was wondering if I could preload the images to make it faster. it takes about 2.5 seconds to change the image. Should I set my meta tags to cache? The page is at …

Web Development javascript
Member Avatar for Dsiembab
0
95

The End.