52,566 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for rukshilag

This is a table customization in a search form. I need the ticked checkbox values to be passed to the pdf.php in order for the table to be customized. but the table is not filled nor is it customised. [CODE]<?php //access incoming name, id or radio button values $cs = …

Web Development file-stream pdf php
Member Avatar for Zagga
0
171
Member Avatar for techie81

Am using a JSP code to upload multiple files. It is running properly in Developement system, but in the production system it is giving error : HTTP Status 500 - -------------------------------------------------------------------------------- type Exception report message description The server encountered an internal error () that prevented it from fulfilling this request. …

Web Development apache java-jsp
Member Avatar for parry_kulk
0
272
Member Avatar for sugikrish

Hi friends, How is assigning the value to text box which is selected in the list.and then in .NET or VB have crystal report and grid view for showing report from. like this any other option in php? Only using table wil we show the report?

Web Development php
Member Avatar for rajarajan2017
0
80
Member Avatar for MDanz

how do i do a table pyramid? e.g. 1st column(1 row), 2nd column(2rows), 3rd column(3rows)

Web Development php
Member Avatar for rajarajan2017
0
68
Member Avatar for Usura

Hey Ive been searching all over for an example but cant seem to find anything to close to what im after, Im really new to javascript so dont know how to start coding it myself. Ive got a form with 3 text fields, one for first name, last name and …

Web Development javascript
Member Avatar for Usura
0
141
Member Avatar for muralibobby2015

hello.. i have this url.. [CODE]http://localhost/flowerstore/flowerdep.php?cat=ROSE[/CODE] how to rewrite like this. [CODE]http://localhost/flowerstore/ROSE[/CODE] i am trying lot...but no use...any body help

Web Development php
Member Avatar for muralibobby2015
0
74
Member Avatar for albertkao

My program should display '*' when entering a password to a text box by a user. How to do that?

Web Development display javascript
Member Avatar for thalz
0
81
Member Avatar for Athiththan

Hello all, I am new to the webhosting...and now i am in a position to configure my Server(WAMP) into https...I tried by following a step by step procedure which is published in a web page....I created the Certificate and the Key and if i type "https://localhost", i can go to …

Web Development php web-server
Member Avatar for rajarajan2017
0
113
Member Avatar for sinyi

<td> <select name="sourceitems"> <?php $Qry1->text = "SELECT * FROM sourceitems"; $Qry1->openSQL(); $Qry1->first(); while(!$Qry1->eof){ $SourceID=$Qry1->fieldByName("SourceID"); $ItemName=$Qry1->fieldByName("ItemName"); $selected=""; if ($SourceID == $_POST['SourceID'] ) $selected="selected"; print "<option value=\"$SourceID\" $selected> $ItemName </option>"; $Qry1->next(); } ?> </select> </td> Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in D:\Webroot\TM\editData.php on line 179 …

Web Development php
Member Avatar for rajarajan2017
0
281
Member Avatar for niths

hi all, i am having a page. where we can see list of files in a table and in every row download link is there.we can download that file by clicking on download link, so now i need a delete link also which deletes the selected file by using its …

Web Development php
Member Avatar for etftw
0
193
Member Avatar for jjpennett

No matter what I try, I keep getting Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in ___ I tried array also, but here's the code for the login page. About 23 lines down. Also, I'm new to PHP, as in, today new. [ICODE] /* Start session …

Web Development mysql php session
Member Avatar for rajarajan2017
0
91
Member Avatar for grafiksinc

Hello all, First off I am using VB.net I have a dropdown list in the Item template. I would like the user to select a value and update the database without clicking an update button. Here is the Code for the DDL [CODE]<asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="SqlDataSource2" DataTextField="provider" DataValueField="provider" AutoPostBack="True" AppendDataboundItems="true" …

Web Development asp.net sql
Member Avatar for grafiksinc
0
126
Member Avatar for saika

hi there, i am building a firefox extension for my final project. i am stuck at the last leg. i need a javascript command that gets two words before, and two words after a highlighted word (a window of 5 words) into my program. i can get the highlighted word, …

Web Development javascript
Member Avatar for rajarajan2017
0
89
Member Avatar for sjeggels

Hi there, I am still experiencing problems to populate the dropdown menu in my form (mysettings.php) with the correct contents from the database. Herewith is what I have. <?php /********************** MYSETTINGS.PHP*************** *********** This updates user settings and password **************************** ********************** **********/ include 'dbc.php'; page_protect(); $rs_settings = mysql_query ("select * from …

Web Development data-structure php session
Member Avatar for rajarajan2017
0
232
Member Avatar for vaishnavicse

hi i have done a page which contains username and password,there i have to check my username and password string and authenticate that page. here is my code. [code] <%@ page language="java" %> <html> <head> <title> WELCOME </title> <script language = "Javascript"> function ValidateEmail(){ var emailID=document.frm.t1; var emailID1=document.frm.t2; if ((emailID.value==null)||(emailID.value=="")) …

Web Development java-jsp javascript
Member Avatar for rajarajan2017
0
166
Member Avatar for rukshilag

Im trying to customise search fields and then display in a pdf but the code just doesnt work. can someone take a look and see why exactly this is not working? if u see any mistakes? [CODE]<?php //access incoming name, id or radio button values $cs = $_GET['cs']; $name=$_GET['name']; $uni=$_GET['uni']; …

Member Avatar for urtrivedi
0
154
Member Avatar for maria_mj

I have a gridview that was bounded to a drop down list. When a value is selected from a drop down list, the grid view will display only data that related to the value that is selected. But, data in the gridview cannot be edited. My problem is, i want …

Web Development asp.net dataset web-server
Member Avatar for maria_mj
0
271
Member Avatar for kristo5747

Greetings! I have an app that my users rely to update customer data in our local database. I want to add a "control" whereby a check for customer number is done to make sure it exists. I started with this simple script [code] <?php //variable declaration $customer_id = '257'; // …

Web Development php storage
Member Avatar for kristo5747
0
117
Member Avatar for fuggles

[code=php] <?php session_start(); $password = "password"; if($_POST['password']==$password) { $_SESSION['loggedin']=1; header("location:index.php"); } else { header("location:index.php"); } ?> [/code] That works fine in other browsers. But in IE, when you click the submit button the previous page it redirects you back, and not logged in. Internet explorer says something about security. Does …

Web Development php
Member Avatar for fuggles
0
87
Member Avatar for xrunner

I have written a DLL which I intend to use in .NET and ASP.NET applications. I need to pass a Label (or TextBox) control to one or more methods. I can't make .NET recognize a Control as a parameter. Can anyone help? Thanks, Gerry

Web Development asp.net
Member Avatar for xrunner
0
118
Member Avatar for gumby64

First let me start off with saying I am just learning PHP with smarty and am not doing this for any school/class assignment. I am trying to create an email form that allows a user to subscribe/unsubscribe from a mailing list. I can not figure out how to write the …

Web Development php
Member Avatar for diafol
0
165
Member Avatar for Marty6

Hi, I'm a relative newb with wamp server and web development. I've been asked to take over the development of a website. when I'm accessing the site locally everything works fine. But when I upload the site to our online server and I try to access it remotely from another …

Web Development php web-server
Member Avatar for etftw
0
111
Member Avatar for hinde

I need a tag that doesn't go anywhere when I click on it but will show the little hand with index finger outstretched like I am hovering over the text teh tag applies to. I googled for a while, but could not find anything related to what I am looking …

Web Development javascript
Member Avatar for SKANK!!!!!
0
2K
Member Avatar for HITMANOF44th

i have tried shell_exec system exec i want to run a command like maybe im missed something if you want my code ill post it but the other command i run to ocr the item works fine im banging my head and its probly something simple mv -f .*tif /somewhere/

Web Development php
Member Avatar for etftw
0
124
Member Avatar for umandajayo

Hi Flocks.... I am developing a web site by using Joomla And I need to get a data from data base under the following criteria 1. item should be a published (in my module published is 1 and unpublished is 0) 2. and selected data should be a shorting under …

Web Development php sql
Member Avatar for sourcebits
0
84
Member Avatar for Alex John

i am developing a web page... in that i hav added a coding like this... HtmlParser.parse(document, "Chap0702.html"); its showing an error like namespace required... wt is namespace to be included for this....

Web Development asp asp.net html-css
Member Avatar for kvprajapati
0
122
Member Avatar for sajed

hi how i can let echo like in image [URL="http://img52.imageshack.us/img52/5373/gggpr.jpg"]http://img52.imageshack.us/img52/5373/gggpr.jpg[/URL] first article with image and title after come title only for other articles this is my code [ICODE]$querypub = "SELECT * FROM art_publish where category='$bnrow[1]' ORDER BY id DESC limit 3"; $qrypub = @mysql_query($querypub,$connect) or die ("Wrong Query"); while ($pub …

Web Development php
Member Avatar for sajed
0
109
Member Avatar for sureshrajanmca

If runtime error occur then who find and sent error to the user? I think its JUST-in-Runtime, but I want brief answer.

Web Development asp.net
Member Avatar for kvprajapati
0
100
Member Avatar for rutaba

i want to add an advertisment in my site. is there any control for that as in asp.net or some other way? i wnat adds to be changed after few seconds.. kindly help me and give ur precious suggestions. Thanx

Web Development asp.net php
Member Avatar for rutaba
0
73
Member Avatar for tootytoot

Hi ppl, i have a prob here. i'm trying to do a webpage and putting it in a cd for viewers to view. so i found the script below to open a full screen windows. it work! but the prob is that it opens two pages. one normal window and …

Web Development javascript
Member Avatar for sbonder
0
196
Member Avatar for fiaolle

Hi I'm trying to use a dropdownlist in the DetailsView, but when I click the insert button I see in the table that the field Maker just contain NULL value. I haven't been using the GridView or DetailsView that much so I need help. Is there a way to insert …

Web Development asp.net dataset
Member Avatar for kvprajapati
0
110
Member Avatar for laghaterohan

Hello, i have two controls one Dropdownlist and another a text and i have add button besides them. Both the ddl and textbox r populated from database. I have a gridview placed below these controls. when a user clicks on add the gridview should populate with the selected value in …

Web Development asp.net
Member Avatar for rohand
0
271
Member Avatar for iamchamith

I am use asp.net with C#.net... my question is how to get message box at server side... example is ..> we think there is the asp textbox in the asp page.if this textbox is empty message box [conform box] must appear with the message called "Are u really want to …

Web Development asp.net
Member Avatar for iamchamith
0
155
Member Avatar for godfather21

hello guys,i am having a problem when i want to post some variables using multiple forms.please i need some help. the first file contains the following: <?php if(isset($_GET["submit"]) && $_GET["submit"]) { $qty1=$_POST["qty1"]; $qty2=$_POST["qty2"]; $qty3=$_POST["qty3"]; $qty4=$_POST["qty4"]; $qty5=$_POST["qty5"]; } else { ?> <table border="3" align="center" width="90%" > <tr><BR><BR> <th bgcolor="#ECD672" align="center">¸éäïò Êáõóßìïõ</th> …

Web Development php
Member Avatar for urtrivedi
0
139
Member Avatar for niths

hi all, i am having a login page.so that if role==0 it moves to one page and if role==1 moves to another page,if role==2 it moves to some other page. In this i need to add another condition if status is active(1) so i had done that but i am …

Web Development php
Member Avatar for somedude3488
0
177
Member Avatar for sugikrish

hi friends, i cant able do perfect design in php using html. if any spaces allocate means i use only "&nbsp;". if you know any other way for successfully doing this pls send to me.

Web Development php
Member Avatar for urtrivedi
0
78
Member Avatar for raju_boini525

hai all, i am working on a project, my project have 3(bronze, silver, gold) types of payments, payments are done through the paypal the expiry date is one month. if user reach the expirydate we must send email to him, after expirydate is passed his payment type change to bronze(it …

Web Development php sql
Member Avatar for SKANK!!!!!
0
120
Member Avatar for QWaz

Hi, I would like to set up a html email that gets sent to a mailing list for a client. However I have never done this and am really unsure about where to start. The way i am intending it to work, is for the client to just click a …

Web Development email html-css php
Member Avatar for SKANK!!!!!
0
109
Member Avatar for jtapp

I've been messing around with this for three days now.. can you look at my code? I'm not getting any error messages, but I'm not getting any data either. I currently have a working form that successfully returns the results I want from one table in my DB. However, I …

Web Development javascript php
Member Avatar for frazehmad
0
118
Member Avatar for niths

[QUOTE]hi all, i had a problem with logout.Even after clicking on logout,if we press back button i am able to see the details. i am destroing the sessions also. so can any one help me.... Thank u.[/QUOTE] [CODE]<?php ob_start(); @session_start(); require_once ("check.php"); session_destroy(); echo "<strong style='color:#FF3333'>"."<left><h1>Successfully logged out.</h1></left>"."</strong>"; ?> <html> …

Web Development html-css php
Member Avatar for SKANK!!!!!
0
103
Member Avatar for DoctorTom

Hi, I am bulding my own website and I would like to have a drop down selected menu on there. I would like to do it, creating a database on mySQL connected to a php file to show the results. However, I am not sure if what I wrote above …

Web Development php
Member Avatar for SKANK!!!!!
0
2K
Member Avatar for niths

[QUOTE]hi all, i hav a problem so in order to solve that i need to keep the radio button value in a session.but i am not getting it how to keep. so any can can say me.. Thank u.[/QUOTE] [CODE] <?php ob_start(); @session_start(); require_once ("check.php"); include 'connection.php'; $query= mysql_query("SELECT projectassign …

Web Development php session
Member Avatar for SKANK!!!!!
0
155
Member Avatar for furqan219

Hi to all Result of my SQL Query is attached My Query is [CODE=mysql]SELECT * FROM $tbl_name WHERE TO_DAYS( NOW( ) ) - TO_DAYS( `pDate` ) >20 AND mid(`SiteID`,1,1) ='C' AND `cDate` LIKE '0000-00-00' AND `crDate` LIKE '0000-00-00' [/CODE] For Showing I use this Code [CODE=php]echo "<table cellpadding=2 align=center cellspacing=2 …

Web Development php
Member Avatar for SKANK!!!!!
0
165
Member Avatar for javan96

hi everyone im new to programing im trying to send a html email using my forum mass email option, but every time i send it nothing shows up in the email but a bunch of source code. CAN ANYONE HELP ME PLEASE. THIS IS MY SOURCE CODE. <html> <style type="text/css"> …

Web Development html-amp html-css php video
Member Avatar for Prithwirajsaha8
0
177
Member Avatar for rabzzz

hi im using combobox and retriving values in it from database , now what i wan is to get the selected value of combobox and send it in my php function....im unable to do this need your help thanx

Web Development php
Member Avatar for SKANK!!!!!
0
91
Member Avatar for andydeans

Hi, I have used Dreamweaver to create my php/mysql data driven site. I have managed to secure the site with it and generate my pages. problem is users should only see their own clients which works on the results page, however if say UserID 1 had a client registered to …

Web Development php
Member Avatar for SKANK!!!!!
0
87
Member Avatar for redgie44

Ok I am currently learning php through wordpress and I have a small project to create a running website which displays the results. CUrrently I can display the results for a certain race that I hard code: [code] <?php // Connects to your Database mysql_connect("XX.XX.XX.XX", "admin", "pwd") or die(mysql_error()); mysql_select_db("db") …

Web Development html-css php sql
Member Avatar for redgie44
0
159
Member Avatar for pepon

Hi all I have developed a newsletter for my client created dynamicly with PHP and MySQL. Everything was ok since I need to send the newssletter to the unclosed recipients. The problem is that I need elaborate the message with the newsletter inside (CSS,photos,etc) because the archive that contains the …

Web Development html-css php
Member Avatar for Prithwirajsaha8
0
116
Member Avatar for aarya

i want to send the newsletter to all those who subscribe to my website. i ahve a templetae with table navigation ,site logo,some images. i wnat to send news letter with all this . i create the html file . can i do thsi code to send [QUOTE]<?INCLUDE 'd.php'; $title=$_GET['title']; …

Web Development email html-css php
Member Avatar for Prithwirajsaha8
0
183
Member Avatar for mrjoli021

how can i echo this code. when i echo it it prints out the html tags and <? php code ?> i want to echo the html code and interpret the php as php. [code] echo "<h2>Add Contact</h2> <form name=\"form1\" action=\"<?=$_SERVER['PHP_SELF'];?>?mode=added\" method=\"post\"> <table class=\"tableStyleClassTwo\"> <tr><td>Name:</td><td><div align=\"left\"> <input type=\"text\" name=\"name\" /> …

Web Development php
Member Avatar for SKANK!!!!!
0
212

The End.