52,566 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for sunita2006

Hello Team, I want to load a dll functions into script javascript for digital signature verification. I have tried this using CAPICOM dll and it woks well. I have a custom DLL which has got the functions which can be used for digital signature creation/verification. To Load the functions from …

Web Development javascript
Member Avatar for arunp_eagle
0
525
Member Avatar for cliffcc

I cannot delete the records after pressing the delete button. What is the fatal error? Thanks! admin.php [CODE] <?php $host="localhost"; // Host name $username="root"; // Mysql username $password=""; // Mysql password $db_name="test"; // Database name $tbl_name="test_mysql"; // Table name // Connect to server and select databse. mysql_connect("$host", "$username", "$password")or die("cannot …

Web Development php
Member Avatar for cliffcc
0
83
Member Avatar for slrobinson1983

hello all. i've bee learning php for the last couple of weeks while designing a site but i am now frequently running into situations where i need to use javascript. i have a page where i want a user to browse for a pic with a file field and i …

Web Development file-system image javascript
Member Avatar for slrobinson1983
0
295
Member Avatar for john0563

Hello, I was hoping for some help in the right direction. I am creating a PHP/MySQL script and I was wondering what is the best way of being able to use it as a standalone application on a local computer. It's a little complicated, but let's say it's an online …

Web Development javascript-jquery php printer
Member Avatar for vsmash
0
599
Member Avatar for ptara1

I have a script that calls up a picture stored in a database. I then have a script that displays said picture on another page. If there is no picture in the database I would like for their to be a no picture icon displayed. New to php but I …

Web Development image mysql php
Member Avatar for ptara1
0
2K
Member Avatar for shadyabhi

We have to login to a http page so that I can surf the net. But, that login page also requires me to keep that page open which is very irritating. The page have javascript that checks if the page is loaded every 180 seconds, it its not loaded, I …

Web Development javascript open-source
Member Avatar for Agarsia
0
312
Member Avatar for zeeshan_kust

i retrieved data from mysql table into html page i.e [code]$query="select * from student"; $result=mysql_query($query)or die(mysql_error()); while($rs=mysql_fetch_array($result)) { ?> <tr> <td align="center"><?php echo $rs['st_id']; ?></td> <td align="center"><?php echo $rs['name']"; ?></td> <td align="center">&lt;input type="checkbox" name="check" <?php if($rs['checked']==1){echo "checked"; } ?> /></td> <td align="center"><a href="delete_student.php?id=<?php echo $rs['st_id'];?>"><img src="images/delete_icon.png" alt="Delete" /></a></td> <td align="center"><a …

Web Development first-post php
Member Avatar for diafol
0
117
Member Avatar for public-image

Hi there :) I am doing a login log script and at first I didn't record the timestamp unlike all my newer logs, I was wondering is there a way to turn the date d/m/Y (15/02/2011) turned into a timestamp? I would appreciate any help given Thank you in advance!

Web Development php
Member Avatar for diafol
0
89
Member Avatar for RicardoE

Hi, Today I was reviewing traffic for one of my websites, I found out that someone linked a jpg image into a forum, and now its getting huge bandwith I mean a lost of hits even when the image was deleted, hits I could use, is there a way for …

Web Development http-protocol php seo
Member Avatar for RicardoE
0
152
Member Avatar for nrkumarvj

Hi I am preapring a website form where the resume needed to be uploaded and it should send an email to me along with upload as attachment. Please let me know the error in this below forms: == HTML Form: [CODE]<form method="post" name="mailform" action="emailnew.php"> <table width="200" border="0" cellspacing="0"> <tr> <td …

Web Development file-system html-css php
Member Avatar for diafol
0
302
Member Avatar for saira-nazir

i want to use if within while loop plz check it out and point out the mistake [CODE]$n=2; $e=8; $n=$e; while ($n<=$e) { if ($n%2=0) { echo"result is " .$n $n=$n+1; } else { echo "invalid"; } }[/CODE]

Web Development php
Member Avatar for diafol
0
108
Member Avatar for nice_candy

hi, i have created an ASP.net web service that contain a webmothod that return the string. now i want to add an other method into that method. like following [code] [WebMethod] public string hello() { sum(); return "abc"; } public int sum() { return 10; // it does not make …

Web Development asp.net
Member Avatar for Fortinbra
0
129
Member Avatar for Asim Javaid Far

I am asim, hi, i have uploaded my site first time and but unfortunately i got errors in web.config file that is as below: [CODE]<?xml version="1.0"?> <!-- For more information on how to configure your ASP.NET application, please visit http://go.microsoft.com/fwlink/?LinkId=169433 --> <configuration> <connectionStrings> <add name="ConnectionString" connectionString="Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\Database.mdf;Integrated Security=True;User Instance=True" providerName="System.Data.SqlClient" …

Member Avatar for Fortinbra
0
250
Member Avatar for barizon

Hello everybody! I need to get the values of two hidden fields and values that make a query in my database and return this column to a text field in the same form, I have already informed the forum here that can do that with Ajax, researched and made an …

Web Development html-css javascript
Member Avatar for UzuNarU
0
96
Member Avatar for arelius

Hello All, On my local machine, my website works perfectly. All the functionality that I have made works great. I then copy my folders from my local machine to my test development web server. Once this occurs, certain functionality of my website no longer works, yet it is a direct …

Member Avatar for Fortinbra
0
112
Member Avatar for JerieLsky

Hi, i don't know if i'm in the right category in posting this thread. I'm only newbie in creating webpages. I created just a simple web page made from wamp server(php & mysql), now I just want to try how to deploy it, like posting it in a free web …

Web Development php
Member Avatar for sudeepjd
0
228
Member Avatar for abhi10kumar

I have text area and combobox, Selected value of combobox is to inserted at the current cursos location in the text area. How it can be possible ??

Web Development php
Member Avatar for abhi10kumar
0
95
Member Avatar for TheAlex

Is it best (or even possible) to replace spaces using URL Rewrite or using ASP/ASP.net before the URL is sent? If it's the former, can it be done with a wizard within IIS? Also, I will need to replace capital letters and accented characters with an equivalent e.g. é with …

Web Development asp.net microsoft
Member Avatar for Fortinbra
0
479
Member Avatar for muhamin

bellow is my entire file, the problem is when i insert multiple links, it only fatch 1 link from the textarea and then giving me the following error on the rest, FYI there is no problem with the reading part in the text area i can read line by line …

Web Development file-stream php
Member Avatar for paulrajj
0
223
Member Avatar for mbarandao

Hello: I have a mysql table which has following rows: id (unique and auto increment) platenumber customerid servicearea date I want to create a sql statement which essentially performs the following task: Pull from table_name the last inserted row where the customerid='mb6537'. There could be more than one row containing …

Web Development php
Member Avatar for phpology
0
83
Member Avatar for deepakkrish

Hi Friends, Any one used OTRS software.I am trying to update the requirements.I am unabl eto connect wit the database. The thing is if i logged in with user name n pass .the user name and the sys time should it the database. i tried some facts but dont know …

Web Development javascript
Member Avatar for deepakkrish
0
101
Member Avatar for raq_0619

How could I include the image in the print preview? I cant make it work :sad: anyone? please help. [CODE]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta name="generator" content= "HTML Tidy for Windows (vers 25 March 2009), see www.w3.org"> <script type="text/javascript"> // _importNode() needed for IE if (!document.importNode) …

Web Development javascript xml
Member Avatar for vsmash
0
162
Member Avatar for arv3

Hello. I'm working with a webpage where its going to a Google Store Locator. [URL="http://code.google.com/intl/no-NO/apis/maps/articles/phpsqlsearch.html"]Goolge Store Locator guide[/URL] I did follow. I got it working for a while, but here in Norway we have some characters, ÆØÅ that we use. This is the problem. When I search for a place, …

Web Development mysql php seo xml
Member Avatar for smantscheff
0
243
Member Avatar for amrutap27

Hi I am using IIS 5.1 and im trying to host my web site on IIS. But it generates error while opening database..im using MS SQL server 2005. The error is : "Cannot open database "EXAM" requested by the login. The login failed. Login failed for user 'ABC-0C2DBCA594D\ASPNET'." Please help …

Web Development asp.net
Member Avatar for ImranShafiq
0
81
Member Avatar for nyler01

Good Day, I am looking for threads here in daniweb which will contain my question but the return is not similar to my problem.. Please help me.. i don't know what to do with this. I just want to store date field in mysql database but i can't here is …

Web Development php
Member Avatar for nyler01
0
146
Member Avatar for tendaimare

i've just started doing asp.net i am good in vb.net but i've encountered a challenge.First of all isnt it supposed to be private sub not protected.As you can see i want to output a message on the label which is green but i am getting an error saying green is …

Web Development asp.net
Member Avatar for umamahesh2020
0
102
Member Avatar for raj123456789

i have created a masterpage with two panels on the top for tittle and other stuff.Then i started created a webform using masterpage .But i cant see those panels in my new page usually it automatically does show the cannot.can any one please suggest me whats the problem...

Web Development asp.net
Member Avatar for umamahesh2020
0
87
Member Avatar for shainjetly

Hi i wanted to loop the options list of the select tag inside that echo statement from my database. This file out puts the content to a javascript code. and this output is also javascript. any one help me how can i loop that options in select tag from the …

Web Development php
Member Avatar for shainjetly
0
1K
Member Avatar for bimaljr

Hello, I have used Joomla, Wordpress and other CMS tools. All this tools are plugin and theme based. The basic concept for plugins are to extend functionality and if I update the core system than it will not break the plugin's functionality. I like this same feature in a forum …

Web Development cms php phpbb wordpress
Member Avatar for bimaljr
0
162
Member Avatar for chris.aaker

I need to take data in from a form, using a javascript call. From there I need to send the data to a php script that puts it in a database. I have an AJAX call that does this...but I know that the AJAX call also waits for a response …

Web Development javascript php seo
Member Avatar for chris.aaker
0
243
Member Avatar for ujjval dave

hey guys, I am facing problem to get weather information from client ip address. i know how to get client ip address but i don't know how to get weather information. please somebody help me for this problem. Thanks

Web Development php
Member Avatar for Javvy
0
162
Member Avatar for Walahh

Hello everyone, I would really appreciate if anyone could please help me out here. I am trying to read the user's input in one page and then trying to display it in another page (want to let my users upload a file from their machine and save them in my …

Web Development file-system image php
Member Avatar for Javvy
0
152
Member Avatar for andrewliu

Hello. I have gone through various checks, and I can't seem to figure this one out... [CODE]while($row_sizes = mysql_fetch_array($sql_sizes)); { $sizes = $row_sizes['size']; $product_list .= count($sizes); $product_list .= "<li>".$sizes."</li>"; }[/CODE] Its not outputting any sizes. However, my count($sizes) outputs 0. And that shouldn't because I have [CODE] $sql_colors = mysql_query("SELECT …

Web Development mysql php
Member Avatar for andrewliu
0
113
Member Avatar for james6754

Hi everyone...not usually in this part of DaniWeb... My friend is having massive problems with his internet explorer.. it keeps giving errors about .js (javascript?) Along with this you try to go on a site and it attemps to download a .cr file. Sometimes it loads just plain text, sometimes …

Web Development javascript
Member Avatar for vsmash
0
91
Member Avatar for shdwmage

Good Morning! I guess I will start with a little background and then elaborate on the problem. I run a website for a car dealership with many different locations. The site runs relatively well and all information is stored in a MySQL database except for the image information. Due to …

Member Avatar for smantscheff
0
131
Member Avatar for croker10

Hi All, Hopefully someone has had this problem in the past and can point me in the right direction. In the last couple days the ASP.NET development server has slowed down to nearly a halt when starting and stopping debugging, by that I mean anywhere from 5-7 minutes before the …

Member Avatar for croker10
0
201
Member Avatar for jbennet

How to do a HTTP PUT/DELETE? (Using jquery) . Im making a REST-ful twitter-type aplication using Java Servlets etc... and i have the methods for handling PUT and DELETE, i just need to be able to perform these e.g. when a user submits a form (with the id of the …

Member Avatar for jimforsyth
0
347
Member Avatar for burningcandle10

this is a php code when i check this code on "online php checker" it gives an error "Parse error: syntax error, unexpected T_STRING" on line 1708 how to solve this please give some advice [CODE]<?php class PopUp_Domination { var $base_name = ''; var $theme_path = ''; var $theme_url = …

Member Avatar for burningcandle10
0
2K
Member Avatar for mbarandao

Hello: I have a select box which offers the user the option of selecting multiple selections. I'm a bit lost as to how --if multiple selections are made, to save these selections into mysql. here is the code of my select box: [code] <form name="theForm"> <select size=11 name=servicearea id=select multiple …

Web Development php
Member Avatar for mbarandao
0
637
Member Avatar for ddellostritto

Hi all - I've created a form to create events, but I can't figure out how to insert the date of the event properly into mysql (I'm not interested in inserting the time the register will be created, as that would be timestamp). I've got the column set as datetime …

Web Development php
Member Avatar for ddellostritto
0
165
Member Avatar for flinthabbit

Hello all, i have a strange problem, i use a multi files uploader on javascript and flash [URL="http://code.google.com/p/pirozek-yaps/source/browse/trunk/pirozek-yaps/plugins/uploadify/files/?r=30"]http://code.google.com/p/pirozek-yaps/source/browse/trunk/pirozek-yaps/plugins/uploadify/files/?r=30[/URL] SWFUpload jQuery Plugin v1.0.0 Copyright (c) 2009 Adam Royle. This is that script, and when i use [CODE]mysql_select_db()[/CODE] function in script for add url of uploaded file to database the status on …

Web Development flash javascript-jquery php
Member Avatar for flinthabbit
0
117
Member Avatar for kishanillur

I am building a website using PHP. I need to be able to send SMSs(Messages) from my site to mobiles using some free sms service providing site like ways2sms.com. I don know how i can accomplish this task. Can anyone help me....?

Web Development php
Member Avatar for sudeepjd
0
116
Member Avatar for lifeisboost

I have a simple value that is in a URL that must be kept for browsing a back end i have developed. So any form that is submitted must carry what ever the config= is. The URL value is ?status=17&config=6 This works fine on every page by the use of …

Web Development php
Member Avatar for sudeepjd
0
122
Member Avatar for ImranShafiq

I have developed web application in asp.net 2.0. I have number of pages and i want to open new ie instance on button click event.

Web Development asp.net
Member Avatar for croker10
0
91
Member Avatar for jwiere03

I am working on a little project here. I have two arrays (States, Cities) I am trying to allow the user to chose one from a select form (Choice) and then have the values of the chosen array displayed in a alert(). Obviously I could just write an if statement …

Web Development display javascript
Member Avatar for jwiere03
0
172
Member Avatar for taylby

Hi I am working on a Silver light web application that is using the Prism Model (So apologise if this is the wrong forum). Context I am involved with softening the URL's which call various applications through out the application. The list of URL's comes from an XML file which …

Web Development asp.net web-server xml
0
80
Member Avatar for EvolutionFallen

Hi, I'm having trouble submitting a form using a link. I have a table that lists a bunch of data, and I want to allow users to edit the data directly in the table. The user can click the "EDIT" link, which makes jQuery replace the appropriate <td> html with …

Web Development javascript javascript-jquery seo
Member Avatar for severman
0
721
Member Avatar for shmy789

Hello,.... How Can I Retrieve Data(images in binary Format) From DataBase and display it in a marquee, I Khow how To display it Gridview but i dont know how to display it in Marquee Please Help thanx :)

Web Development asp.net
Member Avatar for Fortinbra
0
114
Member Avatar for Nitin Daphale

In my project I allow to register anyone and he can schedule a test on certain date. But problem is when registered user set a test on a date assuming local time, but the server which hosting the site is in U.S hense there is mismatch occurs. Can anybody tell …

Web Development asp.net
Member Avatar for Fortinbra
0
73
Member Avatar for Netcode

I have two FileUpload Controls. I want one of them to accept only word and pdf file, the other is to accept only images(.jpg|.bmp|.gif|.png). I've actually tried coding an upload button and i tworked but i prefer a client-side validation so i've decided to use a RegularExpressionValidator. Pls I need …

Web Development asp.net pdf
Member Avatar for Netcode
0
82

The End.