- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
18 Posted Topics
[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 …
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 …
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... …
[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.
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 …
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 …
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 …
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 …
lol @ the emoticon ardav! It's surprising how often the server-side to client-side issue is mentioned between programming languages.
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 …
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
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> …
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 …
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
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. …
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 …
Try this: [code] $("input#xxxxx").change(function(){ // Do validation here // If validation passes, submit }); [/code] although that won't give your use m
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) - …
The End.