Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
8
Posts with Upvotes
7
Upvoting Members
7
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
4 Commented Posts
Member Avatar for humbug

i have made a program in school that chooses a random number and you need to guess it. you put in a number and it says higher or lower. the only problem is that i can't set RAND_MAX and its a 4 or 5 diget number (havent figured it out …

Member Avatar for yw_046
2
29K
Member Avatar for humbug

Hi, I am running an Acer Aspire 5720 with Windows Vista Home Premium (32 bit) and I'm having trouble with the backlight killing button. fn + F6 is supposed to turn off the backlight until you show some activity but this function only seems to work only once per startup. …

Member Avatar for manuelro
0
98
Member Avatar for AdventDeo

Hello, I have a MySQL database and I'm trying to make a dropdown list using PHP based on the value stored in my DB. So far I have this (copied, pasted, and edited from another forum): [CODE] <form action="maintest2.php" method="POST"> <table border="0" cellpadding="2" width="100%"> <tr> <td><b>Main Category:</b></td> <td> <select name="Name"> …

Member Avatar for AdventDeo
0
138
Member Avatar for mbirame

Hi folks, I am brand new to PHP, but I am trying to learn from an online tutorial. I'm using this one: [url]http://inpics.net/tutorials/php/variables24.html[/url] I'm sure there are many others, but that's where I'm at now. I am on the variables section, and they present this code: [CODE]<?php # This script …

Member Avatar for humbug
0
134
Member Avatar for bobocheez

Is there a way to send a streaming url such as mms or asx through mysql or a php file so that it does not appear in the source code?

Member Avatar for bobocheez
0
95
Member Avatar for Toxikr3

Hi guys, I have been working on a site and have managed to add a login script. I made an "status" script myself which tells people if a user is online or not. I did that by using database(easiest way I could think of), when person logs in it changes …

Member Avatar for Toxikr3
0
236
Member Avatar for CFROG

I'm working on a script that handles a member sign up. Upon submission of new member info the script queries the users table to check for duplicate user name (in this case an email) and return an error if duplicate is found. If not I want it to just submit …

Member Avatar for humbug
0
134
Member Avatar for dev_plant

I'm taking a course in Web development, learning to write PHP and I been working very hard on trying to find the errors in this script. I'm very new to programming and I get confused on where '," belong in the code. Any suggestions you can give is very helpful. …

Member Avatar for cwarn23
0
150
Member Avatar for Xessa

I want to insert an array into a table. Each array element is a row in the table. How can I achieve my goal? I don't want to use [code] VALUES x1,x2,x3,x4 ......[/code]

Member Avatar for humbug
0
161
Member Avatar for onethirtyone

Hey all this is a pretty simple question, basically I connect to a mysql database, and iterate a list of names like this: [CODE]$result = mysql_query("SELECT * FROM Students"); echo "<table border=\"1\">"; while($row = mysql_fetch_array($result)) { print " <tr> <td> " . $row['Student'] . " </td> <td> <form name=\"FRMdelete" . …

Member Avatar for humbug
0
262
Member Avatar for oluchan

Pla can anyone help me with user profile update script. when user log in with their email and password, the page will redirect user to my account section where user can update profile. how do i populate user details on update profile link. I will appreciate any help. Thanks

Member Avatar for humbug
0
284
Member Avatar for humbug

Having hardly used macs in my life, I am now borrowing an old iMac 3G (OS 10.2.8 I think) to temporarily host some php files. I have downloaded the latest version of MAMP to get the job done and done the whole unzipping/moving to apps folder thing. My problem comes …

0
94
Member Avatar for Acute

Hi everybody! I have a problem here while using an http authentication: when you open the page with http-auth code in the browser, the user-name and password box appears-it is Ok, however, I can't make the user-name&password box to apperar again....For example, if you login wrong user-name or pw you …

Member Avatar for jbennet
0
103
Member Avatar for london77

hii there.. im have created a user login page with php and mysql. but somehow im having problem when i try to show username information after user login. i have put this code <? echo $myusername ; ?> but it doesnt show the username.. what can be the problem? thnks …

Member Avatar for somedude3488
0
146
Member Avatar for Designer_101

Hi The user clicks on a buttons to delete all posts in a thread (this also deletes the parent post). The code is bellow. This however isnt working, its deleting all the parent posts, even those that dont correspond to the topic clicked on. Any ideas [CODE] if (isset ($_GET['delete']) …

Member Avatar for humbug
0
271
Member Avatar for humbug

Here's my predicament. I Have managed to send and retrieve some HTTP requests using the GET method successfully using the following code: [code=php] function send_to_host($host,$method,$path='/',$data='',$useragent=0){ // Supply a default method of GET if the one passed was empty if (empty($method)) { $method = 'GET'; } $method = strtoupper($method); $fp = …

Member Avatar for hielo
0
163
Member Avatar for khr2003

I am not sure where to post this topic but I though this section is the right one. I have a large amount of data in a MS word file. Basically, I want to automate the posting of this data into my website through the normal form of posting topics …

Member Avatar for khr2003
0
113
Member Avatar for dev.smith

hi all, Can I use a variable from a .php file to give a value to an HTML FormMail form field thus:? please reply soon. Thanks -----------------------<URL SNIPPED>

Member Avatar for death_oclock
0
70
Member Avatar for mirainc

Im using dreamweaver with PHP. I have items in my shopping cart which is then passed on to the transaction page. How do i add the amount of items in the shopping cart? Any help is appreciated! Thanks!

Member Avatar for humbug
0
164
Member Avatar for PinoyDev

hi.!!I have been developing an online enrolment system for a client in php...ive encountered a problem during the middle situation.The client added a situation that when the student click on the first year link, the subject of that year will just pop-up under the link.example: first year - Filipino - …

Member Avatar for PinoyDev
0
171
Member Avatar for vicky_rawat
Member Avatar for it2051229
0
174
Member Avatar for mirainc

Hey all How can i capture the username, which is being input in a textbox, and pass it to another page? [U]Login.php[/U] Example, username: admin Welcome.php it should display, Welcome, admin How can i achieve this? Using dtreamweaver with PHP language Thanks

Member Avatar for humbug
0
102
Member Avatar for cakka
Member Avatar for theimben

Hello, I need some help. Ive got this script which scrapes the [URL="http://www.imdb.com/chart/top"]IMDB top 250 movies[/URL] list. What Im trying to do is add a search link next to the year bit. Ive got it partially working with str_replace but it only adds the link to the first movie. [URL="http://www.theflickzone.com/misc.php?do=page&template=top250"]See …

Member Avatar for digital-ether
0
92
Member Avatar for Cellu

Hi, This must be a rather dumb question, but I'll ask it anyway. Me and my friend are making a simple news script for our website, and thus we are not going to use mysql. The idea was to use mod_rewrite for SEO friendly URLs e.g /news/2008/12/25/this-is-the-subject/ (== news.php?y=2008&m=12&d=25&s=this-is-the-subject ) …

Member Avatar for almostbob
0
173
Member Avatar for daz1034

Hi My first post yaa lol. This will lily be the 1st of many posts as i trty to get my head round things. Basically i am going to need to post info from a form in to a database but all so post it to a remote api url …

Member Avatar for openwave
0
116
Member Avatar for humbug

I've got a bit of a question regarding the <col> tag and how it takes style attributes in Firefox and Internet Explorer. Here's my code: [code=css] /* * This is the global style sheet for Humbug's test site. Every page will link to it. * Copyright Ben Ritter 2008 */ …

Member Avatar for MidiMagic
0
363
Member Avatar for tiger86

Okay so I am designing a game (that's why I am in this forum.) I want to know from people with experience what language is the best to code in? I see a lot of sites code in flash; though some of them are on phtml pages. Any info will …

Member Avatar for jbennet
0
142
Member Avatar for grvs

I edited a post once and now i don't see option to edit it again. Is that a problem with my browser only(mozilla 2.0) or its some feature of DeniWeb. Problem occurred as I added links to my personal blog in my introduction, but later while viewing welcome guide I …

Member Avatar for punjabivirsa3
0
169
Member Avatar for radhigoud

Hi friends This is Radhika Here is the Query: $str=strlen("Welcome to Program of PHP"); this is o/p:25 But my query is it should read how many words we like for example:uptill "welcome": output is :7....... remaining part should be printed like dots etc. But use single function only. advance thanks …

Member Avatar for martin5211
0
198