Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
~4K People Reached
Favorite Tags

18 Posted Topics

Member Avatar for Motifaithed

[QUOTE=ardav;1775244] "...Wait, I think I remember it now. Oh dear, that's not it. I was sure that was it. Hey Georgia, what's Mike's birthday again? I think it was something like that. He's an airplane pilot you know - comes home once a month to see his old folks... Sorry …

Member Avatar for rproffitt
2
408
Member Avatar for bloodbender

Hello Daniweb! I have a .txt file on a URL and I'm able to read its contents and display them however and wherever I want in my applet without any issues with this simple code: URL url = new URL("http://blabla.com/something.txt"); BufferedReader input = new BufferedReader(new InputStreamReader(url.openStream())); String str; Boolean continueLoop …

Member Avatar for bloodbender
0
228
Member Avatar for richprich

Hmm, interesting. It's going to require some work but it can be done. Here's how I would isolate your website's link out of the entire comment [CODE] // User's comment $comment = "Blah... blah... blah... http://my_website_url.com Blah... blah... blah... Blah... blah... blah... Blah... blah... blah... Blah... blah... blah... Blah... blah... …

Member Avatar for richprich
0
358
Member Avatar for rajeevphp2011

[QUOTE=rajeevphp2011;1780426]any one please explain me how to use cakephp framework or any MVC base framework . i have knowledge of php and WordPress[/QUOTE] Dude, COME ON! Make an effort atleast. -1 for you man.

Member Avatar for rajeevphp2011
-2
435
Member Avatar for bloodbender

Hi guys, Is there a way to confirm your answers for simplifying boolean algebra OTHER THAN truth tables? AND = * OR = + p * q * r + p * r is simplified into just p * r, which of course is the correct answer, but how can …

Member Avatar for stultuske
0
179
Member Avatar for bloodbender

Hello Daniweb, I just created a small program that generates a random integer between a given range then asks the user to guess the number, giving hints like "Too high" or "Too low" along the way until they guess the correct number. I have it all working smoothly, except when …

Member Avatar for stultuske
0
135
Member Avatar for bloodbender

Hello Daniweb, I can't wrap my head around this minor issue. Maybe it's a known bug and I just can't find the right keywords to google it or maybe it's supposed to be like this. Let me know what you guys think. [CODE] public class TestPostfix { public static void …

Member Avatar for bloodbender
0
132
Member Avatar for bloodbender

Hello Daniweb, What would you guys say is the most effective way to manage memory for powers? I'm thinking for smaller powers, like squares or something, it's probably just better to do x * x and Math.pow(x, 2) should only be used for bigger powers. I have a lot of …

Member Avatar for bloodbender
0
111
Member Avatar for glut

lol @ the emoticon ardav! It's surprising how often the server-side to client-side issue is mentioned between programming languages.

Member Avatar for Member #120589
0
117
Member Avatar for calebcook

I faced (and still face) this issue recently. I sell scripts myself and have learned the hard way that the "call home" in scripts is so useless (unless just used to give shout outs about updates) in everything from stand alones to wordpress plugins. Even obfuscators are breakable when you …

Member Avatar for moneeshot
0
193
Member Avatar for xcarbonx

you're getting that error because you're outputting content before that statement your line 6 is "include ('includes/header.html');" Move your entire php code above your line 6

Member Avatar for xcarbonx
0
156
Member Avatar for BrickZ28

if your approved and denial pages are secure admin pages, you could potentially do it as $_GET requests. Instead of: <form action="approved.php" method="post"> <td><input type="submit" value="Approve" </td></form> <form action="denial.php" method="post"><td><input type="submit" value="Deny" </td></form> Go with: <td><a href="approved.php?name=<?php echo $row_Apps['Name']; ?>&age=<?php echo $row_Apps['Age']; ?>&<<<< AND SO ON FOR ALL VALUES >>>>>">APPROVE</a></td> …

Member Avatar for bloodbender
0
165
Member Avatar for bloodbender

Hello Daniweb, I've searched all over including a few threads here on this topic and it looks like I'm running out of options. I'm developing a travel reservations website with a promotional code field on the payment page. The admin wants to be able to create coupon codes with an …

Member Avatar for bloodbender
0
247
Member Avatar for Aamit

Is there a difference between php versions on local and server? And you're sure session_start() is called on all pages BEFORE even any whitespace? Check your error_log for any funny stuff

Member Avatar for Member #120589
0
191
Member Avatar for aecha

It looks like you're just starting out with php, so a good lesson to learn right from the start is data validation. Your code as is right now is almost scary. I'm going to try to give you a few snippets in separate sections to make it easy to understand. …

Member Avatar for aecha
0
128
Member Avatar for bloodbender

Hello Daniweb, I'm trying to validate form fields with php via jQuery and everything is working great, except for one thing I can't figure out. I'll try my best to explain. Here's the jQuery: [code] $(document).ready(function(){ $("form#reservation").submit(function(event){ event.preventDefault(); // Prevent default submission of form }); $("input#continueReservation").click(function(event){ event.preventDefault(); // Prevent default …

Member Avatar for bloodbender
0
183
Member Avatar for calebcook

Try this: [code] $("input#xxxxx").change(function(){ // Do validation here // If validation passes, submit }); [/code] although that won't give your use m

Member Avatar for bloodbender
0
123
Member Avatar for bloodbender

HELLOOOO Daniweb! I'm stuck at an issue that I can't seem to get around with my standard pagination codes I've used in the past. I'm developing a business directory and as with most of those, the listings are priced according to hierarchy: - sponsored (category sponsor, always on top) - …

Member Avatar for twiss
0
92

The End.