939 Posted Topics
Re: Can you be more specific? What is the structure of the file? Have you already created the database table structure? | |
Re: Is that your entire code file? You don't seem to have neither a namespace nor a class defined, both of which are needed. | |
Re: Have you tried: [code=C#] public class Child : Parent [/code] | |
Re: You have the loop in the wrong place, I'm afraid. [code=php] {section name=1 loop=$obj->mProducts[k].attributes} [/code] You want to start (and end) looping between the <select></select> tags so that only the option tags are looping. | |
Re: Javascript uses a function called setTimeout that's used to call a function after a specific number of seconds. Knowing this, you can set up the scenario like this: [code=javascript] var time_held = 0; //these are defined outside var being_held = false; //the functions var time_out = 1000; function button_down('direction'){ being_held … | |
Re: My advice to you is to use a free CMS software, and add a theme to it. Wordpress is a good example of one that might work. The learning curve isn't so hard, and it can do all of what you want there with minimal tweaking (it's really not just … | |
Re: No. Session start must always come before headers are sent, and that means before that code there. | |
Re: Open them with any text editor of your choice. I use geany for my php needs. Dreamweaver should work fine too, just right click and choose open with (assuming you use Windows). | |
Re: The functions odd and even are predicates, ie, callbacks. odd returns true if the number passed in is odd, and even returns true if the number passed in is even. (Note: the & is a bitwise AND operation which achieves this effect). The function array filter, as the name suggests, … | |
Re: That Ultra Hal doesn't look very promising. | |
Re: I havent tested this, but you can create a hidden form field, and set its value to the filename upon selecting with javascript. When the form submits, try deleting the file input beforehand from the DOM. | |
Re: Three simple steps: 1. Have enough brainpower to know that you ask VB questions in the VB forum. 2. Don't ask for help doing such nefarious things on upstanding forums like Daniweb. Instead, scourge the underbelly of the internet for the brain-dead l337 h4xxors who would be more than happy … | |
Re: Paranoid: Low Schizotypal: Low Antisocial: Moderate Borderline: Low Histrionic: Low Narcissistic: Moderate Avoidant: Low Dependent: Low Obsessive-Compulsive: Low | |
Re: You are going to be so embarrassed when you figure out what you're doing wrong :P | |
Re: Does mail.prs.prod require you to login before you can send email? If it does, you'll need to use the PEAR email functions to send the email. | |
Re: Try: [code="javascript"] var d = "" + vYear + vMonth + ""; [/code] Please use code tags. | |
Re: Try [url]http://recaptcha.net[/url] for a free captcha library. Using this library aides in the digitizing of books. Also, the image generation is handled by their servers, not yours. | |
Re: Gonzo, it's not making much sense at all. Here's why: You must be aware that $i is an integer, defined an declared by your for loop. And I dont think you mean to set your href to those integers. Perhaps you meant to get the href data from an array, … | |
Re: The variable $attn would only work if he has register_globals on, which is turned off by default in PHP => 4.3.0 since it is a security vulnerability. krauz2, you can try something like: [code=php] $to_email = ($_POST['attn'] == "info") ? "krauz2@hotmail.com" : "erich.krauz@rgl-e.com"; [/code] Please check and make sure $_POST['attn'] … | |
How can I get and set the rgb value of a specific pixel on screen using C#? | |
Re: Grats. I'm counting every post now till my k. That's possibly because I don't post much at all. | |
Re: You need to set the charset in your editor to UTF-8, not East European. Remember that unicode supports all characters, so those special slovanian letters should still work. | |
Re: Assuming the WAMP in Wamp server stands for Windows Apache MySQL and PHP, then no, you need not install anything else. Just verify that the PHP works if you haven't already (because you'll be using it as your server side language) and pick up and AJAX primer, and you're good … | |
Re: Yeah, you will need something like javascript for this. Ajax techniques are probably best suited for this. | |
Re: What you mean stores in sample.xml? Their binary data, or just the file names? | |
Re: These Classes in the System.IO Namespace will help: Directory File Specifically, you need: [code=C#] Directory.GetFiles("Z:\\", "*.bak"); [/code] Which will return a string[] array. Simply loop through this array and call File.Copy | |
Re: Can I just ask? Do you have PHP validation is place as well in case the user disables javascript? | |
Re: Well how else am I going to be able to talk about SNL next week? Certainly not by watching SNL.... | |
Re: you can also access folder options from the "Organise" drop down on the explorer bar. | |
Re: No, but the ones who want to be perceived as 'creative' use Macs. [I]I use a Mac. That makes me an artist![/I] | |
Re: LizR is right. More simply put you can define a single method like this: [code=C#] public void test(int a){...} public void test(int a, int b){...} [/code] At run time you can call test with whichever set of parameters you want. | |
Quick poll, what do you think should be done to spammers for their ways? | |
Re: Dual boot can be good if you do it right, but dual booting two versions of Windows seems pointless to me. Whatever. | |
Re: No Linux version, not that I'd install it. I'm with Jwenting on this one. | |
Re: You sure thats a syntax error and not a type error? Anyway, you need to check that numstr is actually a float first before calling float() on it. Or, you can just be lazy and do it like me. [code=python] try: numstr = float(numstr) except: print numstr, "is not a … | |
I'm using [B]pygtk[/B] and [B]glade[/B]. I built the UI using glade and I loaded it using the gtk.Builder. Now, I'm trying to retrieve the a menu item using gtk.Builder.get_item() so that I can update the submenu, but it returns a gtk.Action object. There seems to be no way for me … | |
Re: Also, session variables can be exploited if you are in a shared hosted environment. Someone with ssh access to the shared server can get a valid session id from where PHP stores them and pretend to be authenticated. A way to work around this is to store the IP address … | |
Re: [QUOTE]Mr Davis now believes "the Earth is flat and horizontally infinite - it stretches horizontally forever". [/QUOTE] Heheheheheheheheheheheheheehehehehe | |
Re: [QUOTE=R0bb0b;675982]Such a fake, errors don't happen like that.[/QUOTE] Er, yes, they do. | |
Re: Im mostly interested in the swimming and rowing. Although I am a football fan, I find Olympic soccer quite boring. | |
|
The End.