52,566 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for percent20

I have been trying to access a public array inside a class, but it is freaking out on me. Should this be able to work? [code=php] $TestArra = array('Hello', ' ', 'World'); class Test { function Test() { $this->Display(); } function Display() { foreach($TestArray as $value) { echo $value; } …

Web Development php
Member Avatar for R0bb0b
0
562
Member Avatar for firthusa

I have two tables, one is called "options" and the other is called "option_values". The first one contains entries such as: "size, color, shape" while the other has a "option_id" field linking it back to the "options" table and with entries like: "small, medium, red, green, square, etc..." depending on …

Web Development php
Member Avatar for firthusa
0
127
Member Avatar for senthilvnr08
Member Avatar for Ole Raptor
0
68
Member Avatar for psathish2

this page edit page which record user want to edit that field come to the two box.. this is my coding but error is coming Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource <?php $jtitle=$_GET['jtitle']; $desc=$_GET['jdesc']; $hostname="localhost"; $username="cdf"; $password="dfdf"; $dbid="cdsemplo_job"; $link=mysql_connect($hostname,$username,$password); mysql_select_db($dbid) or die("not connected"); $result=mysql_query("select * …

Web Development php
Member Avatar for nav33n
0
82
Member Avatar for arunagar

We have 2 JSPs A.jsp ==> Main screen JSP tabs.jsp ==> The jsp, which has the header and have several tabs JSP 'A' "includes" JSP 'tabs' Now I want that when page 'A.jsp' loads, it should make some check and set a Flag. This Flag should pass to JSP 'tab.jsp', …

Web Development java-jsp
Member Avatar for arunagar
0
130
Member Avatar for prabhatrahul

hi, I have one problem regarding retriving data from database. I have created one database in userrecord and its table name is tbl_user. I am trying to display the user information when thy logged in the syste. i.e view logged user profile. The code is as follow: <?php include("auth_user.inc.php"); // …

Web Development php
Member Avatar for nav33n
0
110
Member Avatar for cleopatra789

Hi, I m new to jsp and currently i m trying to fix this problem. In my project, we have an enhancement where we are trying to access a changepassword.jsp 1) directly through URL 2)Invoking this jsp after loginhandler.jsp. 1) is for existing users. 2) is for new users. We …

Web Development java-jsp session
Member Avatar for masijade
0
115
Member Avatar for pranav_jog

If i try to access the [url]http://Amit/dll/default.aspx(Try[/url] to open the file) i get the error mentioned below: The page you are looking for might have been removed, had its name changed, or is temporarily unavailable. HTTP Error 404 - File or directory not found.<BR> Internet Information Services (IIS)

Web Development asp.net
Member Avatar for krik_ar
0
121
Member Avatar for roy--

Hello, I am currently using phplist, which is ok but started acting weird lately, kinda buggy i must say. Please recommend a free php/mysql based mailing list software. and also please recommend a commercial version of which i might consider.. requirements: tracking of opens/clicks/etc.. multi-language support html support I need …

Web Development php
Member Avatar for macneato
0
133
Member Avatar for wandie

I have a created a page to upload images. Can someone please help me. When when I click on browse I would like the picture to go on the server and not change the image name. just to upload the image as it is. please help <?php include('../includes/cms.config.php'); require_once('login.php'); ## …

Web Development cms file-system php
Member Avatar for nav33n
0
256
Member Avatar for evios

Em, i'd used ASP.NET for 1 month, but recently when i drag a control on .aspx interface, says DropDownList9, and in aspx.vb interface, i try to type DropDownList9, but it keeps saying i did not declare it. How can this happened? Any modification on ASPX interface seems doesnt link to …

Web Development asp.net
Member Avatar for raj416
0
146
Member Avatar for allena

please anybody tell me about the PHP and about applications developedin PHP.

Web Development php
Member Avatar for harinatt
0
78
Member Avatar for psathish2

Parse error: syntax error, unexpected T_STRING, expecting ',' or ';' this line error is coming in php code echo "<td align="right"><a href='edit.php'>Edit/&nbsp;</a>&nbsp;<input type="delete" name="delete"></td>";

Web Development php
Member Avatar for nav33n
0
105
Member Avatar for bww

Hi, I have a family database, and I am having trouble displaying a family member that has more than one child. $bw=$_GET["id"]; mysql_pconnect("localhost","user","password"); mysql_select_db("database"); $result = mysql_query("SELECT * FROM Members WHERE id='$id'"); $row = mysql_fetch_array ($result, MYSQL_ASSOC); echo "Member: "; $result2 = mysql_query("SELECT * FROM spouse WHERE mid='$id'"); $row2 = …

Web Development php
Member Avatar for nav33n
0
93
Member Avatar for icorey

Hello. I'm very new at JSP. I'm trying to make a page navigator thing with an include statement like everyone does with PHP. So I have three files. I know it's way too much for something so simple, but I just wanna try things out. I'm using Eclipse and, unfortunately, …

Web Development apache java java-jsp
Member Avatar for icorey
0
486
Member Avatar for rubendoliveira

Hi everyone, Don't know for sure if this is the right place to post the question, but it goes: I'm starting a JSP project and I'm having some difficulties with Tomcat/Java configuration. I'm using: - apache-tomcat-6.0.16 - java_ee_sdk-5_05-windows Directory where the code is located: C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\ROOT\lw\ Directory …

Web Development apache java-jsp
Member Avatar for jwenting
0
93
Member Avatar for harrence

Hi, my first post. I'm trying to gather attendance records between two dates the user selects. I have two tables 'attendance' and 'artists_details' which I'm hoping I've successfully joined. The field I'm working on is just above the commented one 'ethnicity=maori'. I get no errors, however whatever dates I choose …

Web Development javascript php
Member Avatar for harrence
0
98
Member Avatar for QuirkyCindy

Hi all, Could someone help me with the source code to implement a search feature using servlet (JSP/JSF/Java method)??? Based on the examples below:- (Search by Name, Dept and DOB) Employee Table Id Name Dept DOB Date Search By Name, Dept, DOB Id Name Dept DOB Date 10 Judy BBB …

Web Development java-jsp
Member Avatar for QuirkyCindy
0
108
Member Avatar for joequincy

I'm having one heck of a time trying to match a tag. It looks right to me (and checks out in all of the Regex Tester webapps I've tried) but does not work when I put it to use. The following is the code (with site address and name replaced …

Web Development javascript regex video
Member Avatar for digital-ether
0
225
Member Avatar for mustafaneguib

help please once again... my login page was working just fine when one morning it just stopped to function. now i have tried to fix it, buy changing some of the logic and also recreating the database. now the point i have reached is that when the user enters his …

Web Development php session
Member Avatar for nav33n
0
111
Member Avatar for mgt

I'm new to Javascript and found some code on the internet that's supposed to create some nested select boxes. Here is the code: [code=html]<html> <head>Some testing</head> <script type="text/javascript" //src="http://trac.mochikit.com/browser/mochikit/trunk/packed/MochiKit/MochiKit.js?rev=1256&format=raw"></script> <script type="text/javascript"> /* <![CDATA[ */ // An array of the currently visible selects var level_selects = new Array(); connect(window, 'onload', function …

Member Avatar for digital-ether
0
1K
Member Avatar for dave_nithis

Hi all, I am in the process of creating a web page.The page consists of a form where it will ask the users to give the input values(all values in integers).Those values should be passed and the values should be calculated. I have the wsdl file from the client.I need …

Web Development javascript
Member Avatar for digital-ether
0
108
Member Avatar for caprisan06

Hi, I want to write the below javascript code into my JSP page directly...Can you please help? JSP code... [code=JSP]<span class="mini"> <html:link href="#" styleClass="bouton" onclick="return submit_form_with_parameters('delegationForm', 'delegation', 'noInit=Y');"> <bean:message key="rh2u.deleg.label.etape0.label.chercher" /> </html:link> </span>[/code] JavaScript code... [code]function submit_form_with_parameters(strFormName, strAction, parameters){ objForm = eval("document." + strFormName); objForm.action = strAction + ".do?" + …

Web Development java-jsp javascript
Member Avatar for caprisan06
0
5K
Member Avatar for kvdd

Hello all, What I want is to divide a string in timeformat, lets say 27:30. How can I do that? Eventually I can use SQL for it, because the string comes from the database. Thanks before!

Web Development php
Member Avatar for kvdd
0
1K
Member Avatar for gyanu

We have built a code to compile C program from text area built in PHP. We have tried all the commands that could be used to compile the program, for example exec(), system() and even the shell_exec() commands. The problem is still that we are not getting the output. We …

Web Development php
Member Avatar for nav33n
0
88
Member Avatar for saralamanoharan

hai all Good Morning. I am trying to show a OLAP Report created (using cube in SqlServer 2000) in crystal reports in a asp page. i used smart activex viewer for this but the data alone in the crystal reports r shown. the drill down structure does not appears. Also …

Web Development asp data-structure sql
Member Avatar for venu@baylogic
0
170
Member Avatar for harinatt

hi i need ur guidens to create websitebuilder. It look likes first i have a button like "create your own pages." when user clicks on this link you should get different opton like > menu bar creation > style sheet upload for that site > new page creation etc. different …

Web Development php
Member Avatar for R0bb0b
0
103
Member Avatar for websurfer

Hello, was wandering if anybody out there can help me with the following: We use a third-party shopping cart, but they dont really make it easy to be able to buy "memberships". The way we have it now, is that they buy a "membership-card" (say item code: CLUBMEMBER", which when …

Web Development first-post php session
Member Avatar for kaleshwar
0
114
Member Avatar for sreein1986

how to print html form directly. i.e is there any programatic way or is there any tag to print html form can you send any body code in ASP or dot net any thing i want

Web Development asp
Member Avatar for sreein1986
0
70
Member Avatar for tefflox

Hi, I'm working on the following code for a google gadget [[URL="http://gravityway.com/gadgets/00"]view gadget[/URL]]. It is kind of neat the way it is, but the question I've got may be obvious, regarding the mouseover function. It needs to break on mouseout. I guess it will need a loop. Any help is …

Web Development javascript
Member Avatar for tefflox
0
103
Member Avatar for mesamb1

I am trying to write a simple php program that will up load files smaller then 200000000 bytes to my website, but I keep getting an error when I try to run it the initial HTML code is: <html> <body> <form action="upload.php" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label> <input type="file" name="file" id="file" …

Web Development file-stream php
Member Avatar for mesamb1
0
111
Member Avatar for Roebuc

I have a page that holds two iFrames. The first iFrame is a form the user has to fill out. The second iFrame prints the results the form gives. When the page is first loaded with the two iFrames, I want the second to hold a default page that says …

Web Development php
Member Avatar for R0bb0b
0
205
Member Avatar for prasu

I have a wamp apache server.. how to run asp.net pages from it..

Web Development apache asp asp.net
Member Avatar for tuse
0
2K
Member Avatar for michael123

I try to copy and paste TAB delimited list into html text area, then save it to database, however when I retrieve it from DB, all TAB space are gone, does anyone can give me advice is there a way to keep these TAB? Thanks in advance. [CODE] test test …

Web Development mssql php
Member Avatar for nav33n
0
144
Member Avatar for jayybhagat

I have a project to be done that is a web based EMPLOYEE PAYROLL SYSTEM AND TIME TRACKING in ASP .NET with SQL SERVER and im just a beginner wid ASP .NET and have no idea about what to start with , so please please help me !!!

Web Development asp asp.net web-server
Member Avatar for peter_budo
0
172
Member Avatar for plusplus

I'd like to count how many visitors came to my site. Can you give me a quick and easy way to do this?

Web Development asp.net
Member Avatar for bala24
0
96
Member Avatar for kavithakesav

Hi, I designed one intranet website. Now we are updating employee b'day information for that i should design page and uploaded every time. Is there any option exact 12'clock the page automatically has to go live. Thanks in Advance. Cheers......

Web Development html-css javascript
Member Avatar for kavithakesav
0
111
Member Avatar for sreein1986

Hi, Friends, I am new for Php please send me the tutorial which one is the best for Php learning

Web Development php
Member Avatar for servis
0
104
Member Avatar for Jahira

hi all, i'm having 13 datasets in my windows service.nw the task is to convert dataset into xml.i know to convert 1 dataset into xml.nw i ve to combine all the 13 datasets into 1.den convert the 1 dataset to xml. nw i'm in need to know how to combine …

Web Development asp.net dataset xml
Member Avatar for Jahira
0
62
Member Avatar for cknapp

I'm writing a webapp for a professor. It is basically a replacement for a csh script he wrote, along with a simple interface that will allow for dealing with input and output files. All the csh script does is automate a bunch of perl scripts. Anyway, I chose to do …

Web Development perl php
Member Avatar for cknapp
0
137
Member Avatar for designermom2

I am trying to swap an image with 6 guys on a couch for each one sitting individual. And once the individual is showing, display their bio underneath. I can get the image to change and the text to show but when I roll to the next guy the text …

Web Development javascript
Member Avatar for plazmo
0
160
Member Avatar for venuchitti

HI ALL i have blocked F5 properties ,but i am getting javascript error has access denied where as cursor plased in input type file . plz help me <HTML> <HEAD> <SCRIPT LANGUAGE="JavaScript"> function funtest(event,obj){ var test=window.event.keyCode; if(test=='116') { window.open('t.php',height=300,width=300); window.event.returnValue = false; window.event.cancelBubble = true; window.event.keyCode=0; return false; } else …

Web Development javascript
Member Avatar for sparkyd
0
131
Member Avatar for newasp.net

I am using a Image Button [code=ASP.NET]<asp:ImageButton ID ="SubmitACH" runat="server" ImageUrl="~/images/buttons/selectACHTransfer.gif" AlternateText="Select ACH Transfer" CssClass="goalCloseButtons" OnClick="SubmitACH_Click" /> on its On click event I'm writing this code protected void SubmitACH_Click(object sender, EventArgs e) { Response.Redirect("abc.aspx"); }[/code] And I am getting an error 'Page.aspx' does not contain a definition for 'SubmitACH_Click' Any …

Web Development asp.net image
Member Avatar for newasp.net
0
358
Member Avatar for monto

hi!.........its monto,can you help me writing code for counting the no. of visitor on my website.......thank u

Web Development javascript
Member Avatar for R0bb0b
0
91
Member Avatar for anitha2324

Dear All, i have been asked to develop a website either in php or in one of java techonologies ( struts or jsp) the very important point in this site is that it has the following features... 1)the will be used for any purpose ( i mean still now there …

Web Development api html-css java-jsp javascript
Member Avatar for Luckychap
0
153
Member Avatar for neha555

hi, I m new in JSP can any one help me how to start with jsp. i just download the tomcat. how i write my first program and run it Thankx in advance:)

Web Development java-jsp
Member Avatar for jwenting
0
94
Member Avatar for weevil

Hi all! I really hope someone can do a huge favor and help my group out! We are students and we are trying to complete an assignment to create an interface page using jsp and oracle. Using XP pro we have installed all of the above. We then configured apache …

Member Avatar for jwenting
0
684
Member Avatar for joewazen

hi all, i have an html page with a link to a folder that is located on my server the problem is that when i click on that link i want to save the folder directly into a static location (c:\gv-prj\folderName) on the local pc of the user directly without …

Web Development java-jsp
Member Avatar for jwenting
0
69
Member Avatar for shadiadiph

Hi I have a form and I have a list of checkboxes I am trying to check 2 or all of them and get them to insert into one sql column in my database. When I select them it submits ok but in the cloumn on the database is storing …

Web Development php sql
Member Avatar for Yamthief
0
150
Member Avatar for soosai

hi good morning.. is my function for EXIT is corrcet? Thank you <form><input type="button" value="exit"onclick="exit=false"></form>

Web Development php
Member Avatar for R0bb0b
0
101

The End.