52,566 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for web_developer

hey all i am facing a problem and i googled it and didnt find any solutin yet. hope u will help me. i have web application that support 2 langauges. i am using CLR. CLR supports a mechanism for packaging and deploying resources with any type of application. i was …

Web Development asp.net
Member Avatar for tarim
0
91
Member Avatar for emilio

hi i have an ajax calendar extender control that is set to a textbox. how can i get the current selected date value from the calendar ?

Web Development asp
Member Avatar for emilio
0
95
Member Avatar for emilio

is it possible to catch an exception in a try-catch block and show the message in the page's validation summary ?

Web Development asp.net
Member Avatar for emilio
0
128
Member Avatar for rohnni

Hii I want to design a contact form with multiple fields like title, firstname, lastname,country,email,address,pincode on one page at the bottom with next button and on other page want to add some more fields with checkbox and radio buttons .... please tell me how to design it and its coding …

Web Development php
Member Avatar for rohnni
0
841
Member Avatar for Title27GT

[code=php]<style> body { background-color: #eeeeee; } border:0 valign="top" </style> <?php require_once("VatsimPHPgenerator.php"); $VatsimPHP=new VatsimPHP; $pilotlist=$VatsimPHP->pilots(); $flag=0; $found = false; foreach ($p in $pilotlist) { $m = substr($p[11],0,4)."|".substr($p[13],0,4); if (preg_match("/TTCP|TGPY|TBPB/", $m)) { printf("<tr><th>%s</th><td>%s</td><td>-%s</td></tr>", $p[0], $p[11], $p[13]); $found = true; } } if (!$found) print("<tr><td>There are currently no ongoing flights within the Piarco …

Web Development php
Member Avatar for somedude3488
0
79
Member Avatar for progurammaar

Hello, I made a page that allows users to login, if id and password are correct than it sets up a cookie and says 'Hi'. Now i can access any page on the site after logging in(Which was restricted if you arent logged) Now this works fine in firefox and …

Web Development caching php
Member Avatar for progurammaar
0
99
Member Avatar for Lizapotter

Hello everybody I am in search of free PHP script to add calendar in my forum, can anybody help me in this regard, thanks in advance

Web Development php
Member Avatar for jakx12
0
121
Member Avatar for themightycrag

Here's the scenario. I have a web server running with IIS 6 and website running written in ASP. The site and code has been working perfectly up until about 2 days ago when for no reason whatsoever the ASP has decided to partly work. and by this i mean as …

Web Development asp web-server
Member Avatar for agrothe
0
191
Member Avatar for Will Gresham

Wasn't sure what to put as the title, but what is happening is this: I have div elements on a HTML page, when they click on the div it is replaced with a textarea containing the div contents in order to edit this (eventually there will be a form/submission button …

Web Development javascript
Member Avatar for xyzweb
0
336
Member Avatar for Pado

I'm getting the above error for the following code. Can anyone see what it is? Is my date formatting off? [code] $get_topics_sql = "SELECT topic_id, topic_title, DATE_FORMAT(topic_create_time, '%b %e %Y at %r') AS fmt_topic_create_time, topic_owner FROM forum_topics ORDER BY topic_create_time DESC"; echo $get_topics_sql; $get_topics_res = mysql_query($connection, $get_topics_sql) or die(mysql_error($connection)); [/code] …

Web Development mysql php
Member Avatar for Pado
0
107
Member Avatar for gagan22

Hi everyone, I am facing such type of warning is coming in php file.How it can be resolved . I have also used session_start() function in php file as a first line in php code. I have used it just prior to sending output to browser.But still warning is coming. …

Web Development php session web-browser
Member Avatar for nav33n
0
82
Member Avatar for marjan_m

Hi, I need to set a text feild value unchangable after a user enter first time. I dont want to use it's "readOnly" attribute as it let's the user to select the text. Thanks Regards,

Web Development php
Member Avatar for nav33n
0
174
Member Avatar for progurammaar

hi from where can i add quality news on my site....i mean i have made a website where i want to display quality news and some cool contents(optional).....from where can i get it free....

Web Development xml
Member Avatar for bobchrist
0
115
Member Avatar for steve345

I found 2 new scripts, here they are: [url]http://hot.ee/antsman333/scripts/script1.zip[/url] and [url]http://hot.ee/antsman333/scripts/script2.zip[/url] The script1 is more stylish than the script2, but it displays the directory files with the same icon.. How could I combine these scripts together that the script1 shows the icon according to filetype like script2? how script1 looks …

Web Development php
Member Avatar for pritaeas
0
129
Member Avatar for manzoor1

hi i have problem , rhe code is working properly on local machine but when i upload it on net then it give the warning [COLOR="Red"][B]Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home7/wyzerpmc/public_html/wyzer/survey/survey.php on line 22[/B][/COLOR] [code]<html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> …

Web Development mysql php
Member Avatar for msikwal
0
119
Member Avatar for patharianidhi

Hi everyone I have a list box called tc_id I have populated this list box with values from teh database. Now i want to fetch values from the database into two text boxes based on the selection made in the listbox.

Web Development php
Member Avatar for patharianidhi
0
2K
Member Avatar for vikette

Hello, I'm creating my first website using master pages and asp.net. As part of this project, I need to display a random banner image at the top of each web page. Let's say i have an "images" directory with image1.jpg, image2,jpg, image3.jpg and image4.jpg. In the past, I have used …

Web Development asp.net image
Member Avatar for serkan sendur
0
303
Member Avatar for moiseszaragoza

I have a field validatior on my page. but i noteces if i press the submit btn 2 times the validator does not stop the process. have any one have a problem like tihs? and how to solve it. Thakns [CODE] <tr> <td > <div class="buyIt_Titles2"> <asp:RequiredFieldValidator ID="RequiredFieldValidator1 runat="server" ControlToValidate="txt_BillingCity" …

Web Development asp.net
Member Avatar for serkan sendur
0
73
Member Avatar for OmniX

Sorry been out of commision for a few months. Got a newbe question. What value is returned from an sql query that returns no rows? Example: [code=php] $a = "SELECT * FROM a WHERE b = c"; $b = my_sql_query($a); [/code] Note: Table Name - a Table Field - b …

Web Development php sql
Member Avatar for OmniX
0
2K
Member Avatar for Swapsry

hi frnds.. [CODE]var headline = document.getElementById("headline"); var content = document.getElementById("content"); var data = "headline=" + headline + "&content=" + content; xmlhttp.open("POST","newspost.php",true); xmlhttp.onreadystatechange = handleServerResponse; xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); xmlhttp.send(data); [/CODE] i post data in this way... n the next page i need to retrieve data .. [CODE]$d=$_post['data']; echo $d;[/CODE] output is combination …

Web Development php
Member Avatar for cwarn23
0
84
Member Avatar for serdas

can i include this [code] <? require('inc_rate.php'); getComments("1"); submitComments("1","$PHP_SELF"); ?> [/code] in a php file but display at certain location at the html file. i tried it to paste the way it was but gave me an error so i did like this [code] require('inc_rate.php'); getComments("1"); submitComments("1","$PHP_SELF");[/code] it worked but …

Web Development php
Member Avatar for serdas
0
191
Member Avatar for forwardlookguy

Hello, I got the following code from someone and have tailored it to fit my needs but I have a problem. The first menu populates from my MySQL database. However, when the first menu is selected, the second menu will not populate with the correct information. Zero is the only …

Web Development javascript legal php xml
Member Avatar for upside_down2000
0
409
Member Avatar for dgotti007

I am interested in finding out how I can build a website using Coldfusion and an excel spreadsheet. I used to work for a company that did this and i am now looking to see how to do it. No geekspeak here: I know that the Coldfusion would take the …

Web Development coldfusion
Member Avatar for arrgh
0
153
Member Avatar for veledrom

Hi, In PHP page, Code below always returns TRUE even no record is updated. How can i solve this problem? Thanks [code] $q="UPDATE login SET password=SHA1('$newPassword') WHERE id='$loginID' AND password=SHA1('$oldPassword')"; $run=mysql_query($q); if ($run===TRUE) { echo "SUCCESSFUL"; } else { echo "ERROR: Old password is wrong. Please try again."; } [/code]

Web Development php sql
Member Avatar for nav33n
0
136
Member Avatar for todo

Is there a way one could automate daily maintenance task on the website? The maintenance task could include a number of things: cleaning up database, updating the website and so on...

Web Development php
Member Avatar for chrishea
0
121
Member Avatar for nikhilkanna

Hi,i done a menu with mouseover using javascript.In IE5 it is coming as hai ramu in IE7 it is hai.downside ramu is coming

Web Development php
Member Avatar for nav33n
0
62
Member Avatar for happyns

Hello 1 and all I have created a stored procedure for table X. X contains the fields B,C,D,E,F,G. B is a primary key with data type int. I am giving the stored procedure as follows: [code]Create Proc [dbo].[spXSelect] @B int=null as Begin If @B is Null Begin Select Ident_Current('X') as …

Web Development asp.net
Member Avatar for happyns
0
102
Member Avatar for theimben

Ive got a MySQL search, which searches an index of urls. The search parameter searches titles. What I want to do is have something like Google. So, if someone searches: [CODE]site:example.com something to search[/CODE] It would look for example.com in one column then from those results it would look for …

Web Development google mysql php
Member Avatar for theimben
0
1K
Member Avatar for danielagaba

hi my interface has spry tabbed panels each in its own form, my problem is whenever i submit data on any of the panels in a form, my page reloads with focus on the first panel(index 0). I've tried a number of javascript methods on the form onSubmit but it …

Web Development php
Member Avatar for somedude3488
0
284
Member Avatar for rohnni

[code=php]<?php define("ContactEmail", "highwebgeeta@gmail.com"); $error_msg = 'The following fields were left empty or contain invalid information:<ul>'; $error = false; $submit = $_POST['submit']; if (empty($submit)) $form_submitted = false; else $form_submitted = true; if ($form_submitted) { $title = $_POST['title']; $name = $_POST['name']; $lname = $_POST['lname']; $address = $_POST['address']; $pin = $_POST['pin']; $country = …

Web Development php
Member Avatar for cwarn23
0
234
Member Avatar for veledrom

Hi, Code below always returns only 1 record therefore i don't need while. How can i get result without while loop? Thanks [code] $q="SELECT id FROM login WHERE username='$username'"; $sql=mysql_query($q); if (@mysql_num_rows($sql)==1) { while ($arr=mysql_fetch_array($sql)) { $id=$arr["id"]; } } [/code]

Web Development php
Member Avatar for nav33n
0
75
Member Avatar for ahmksssv

Hi frnds.... I need payment gateways code... i have just basic idea about paypal...i dont know abt code for gateways..here my requirement is it should access all creditcards payments with secure..... i dont know the code is in php or any other way...plz give me some idea abt this...i need …

Web Development php
Member Avatar for ahmksssv
0
267
Member Avatar for Venom Rush

Hi there Having trouble calculating the final cost of choices made by a user. I have 4 radio buttons and 2 checkboxes. The first three radio buttons are, all intensive purposes, chocolates with the last radio button stating that the user doesn't want any of the chocolates. The two checkboxes …

Web Development javascript
Member Avatar for Venom Rush
0
109
Member Avatar for kdee

Hi all! I have a problem (probably a simple one). And I need some help with it. The line with bold red "verifyurl" gives me a bit of a headache. It comes up with an error [I][B]File <%verifyurl%> can't be found![/B][/I] If someone has an aidea about solving this issue, …

Web Development asp.net
Member Avatar for kdee
0
126
Member Avatar for Shanti C

Hello... Good Morning All... How to hide all query strings in my url and here i can't use hidden variables for these all because in all times i couldn't send them with form submission..And my page is having four query strings to be sent... If any body have any clues …

Web Development php
Member Avatar for Shanti C
0
5K
Member Avatar for danielagaba

hi i'm designing an online evaluation application using php. i was asked to add a feature that enables a user if unable to finish anwering questions can save his/her progress and continue when he/her next logs in. basically i have no idea how to even start. thnx

Web Development php
Member Avatar for nav33n
0
427
Member Avatar for emhmk1

Hi People, I've created a couple of install pages for a client (install.php and install2.php) My question / problem is... In install2.php i want to unlink install.php and install2.php via a hyperlink or button and i was wondering how best, if it is possible, to achieve this. Can anyone help …

Web Development php
Member Avatar for nav33n
0
113
Member Avatar for tulsi_apr03

can anybody help me , how can we call a javascript function using firefox browser. my code is working fine when im using IE but not for firefox. Why i cant understood.When im clicking button no action was taken and nothing was happned. [code=JavaScript]<script type="text/javascript"> function login_validate(frm) {var name=frm.user_name.value; if(name=="") …

Web Development javascript
Member Avatar for tulsi_apr03
0
161
Member Avatar for queenc

hi i have some file in my ftp.now i am saving my file in a folder.please tell me how to refer the file outside the folder. eg require_once('../common/dblayer.php'); the above is to refer a file inside a folder.how do the same for outside a folder

Web Development php
Member Avatar for almostbob
0
239
Member Avatar for Swapsry

Hi frnds... I am new to Ajax..i know some minimum basics about ajax.. i know some what php and mysql... So, plz send me ajax login form and registration form....i am trying to learn ajax with database....plz anybody help me... Cheers..

Web Development php
Member Avatar for death_oclock
0
94
Member Avatar for hinasaeedali

Respected, Requirement is when body loaded there must be 1 increment in the variable. and total number of loading the body display on the button (document.button name.value=variable name)

Web Development javascript
Member Avatar for essential
0
132
Member Avatar for theimben

Im having trouble ending sessions for some reason :| Heres my code. Can anyone see what the problem is? [code] <?php include('includes/config.php'); unset($_SESSION['isLogged']); session_destroy(); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> </HEAD> <BODY> <?php echo '<div class="nav">'.$navigation.'</div>'; ?> You have been logged out. </body> </html> [/code]

Web Development php
Member Avatar for nav33n
0
106
Member Avatar for zanzo

I have a frame that includes a hidden <div> at first (before any action), the problem is that when opening the page, I have a white space, and i can't reduce the size of the frame because the content of the <div> will not appear! how to hide the white …

Web Development javascript
Member Avatar for mathew.parry
0
113
Member Avatar for sam1

hi, I am trying to learn how to upload multiple Music files to server then save information about them in database e.g. albumname, filename, type and maybe url. i have few questions: 1. would i be able to write the albumname in database as the folder i am uploading to. …

Web Development mysql php
Member Avatar for nav33n
0
265
Member Avatar for nishantdaniweb

Hi All Could anybuddy tell me how to rename/hide the title in the popup window. I found the below code from google. this code is working fine. Actualy I don't want to show the url to the user. Below code helps to hide the address bar. But still user can …

Web Development javascript
Member Avatar for nishantdaniweb
0
915
Member Avatar for nishantdaniweb

Hi All I am creating a url for a file, which is uploaded in content management server, in the jsp page and from this jsp, I am opening a new window for this file to show the content to the user. My problem is, I want to hide the url …

Web Development java-jsp
Member Avatar for stephen84s
0
2K
Member Avatar for nadineatwaroo

Hey all! I have a gridview with multiple page, when i click on a check box in one page and proceed to the next page and click another check box in the previous page when I go back to the inital page the first check box click is cleared as …

Web Development asp.net
Member Avatar for bcasp
0
113
Member Avatar for rrocket

I am passing a value through query string to a popup and then trying to pass it back to the main page... I store the value in a hidden input box [code] <input type="text" name="FromZip" id="FromZip" value="<% response.write(Request.QueryString("txtZipFr")) %>" /> [/code] and am passing it back through query string to …

Web Development asp javascript
Member Avatar for guest
0
2K
Member Avatar for antwan1986

Hi guys, this is a brainteaser for me and I'm wondering if you could help. Lets say I'm looping through these results from MySQL, and the result set is as follows: ID------Name 4------ Anthony 76------John 31------Andrew 98------Sonia If I was on the 2nd row (with an id of 76, name …

Web Development php
Member Avatar for pritaeas
0
125
Member Avatar for lifeworks

Hi Im trying to re-make one of those image galleries where you click the thumbnail and the whole browser window is blacked out with the larger image displayed in the middle. Ive gotten as far as finding a script to hide this black layer and reveal it onMouseClick... but if …

Web Development image javascript
0
78

The End.