No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
20 Posted Topics
Re: At this moment in time I'm some what hooked on World of Warcraft. | |
Hello, I am currently passing some HTML through to preg_match and I want to access all the HTML between two tags, however as the same tags may be repeated afterwards my current expression isn't working. For example, my expression at the moment is [code]<li>(.*)</li>[/code] But as the HTML is like … | |
Hello, I am looking for a means of database interaction in which the database will be stored on a user's machine but with no actual server software running. I have read there is some way to create databases in SQL express and then take the files for use in your … | |
Hello, I have just bought a new NAS ([url]http://www.amazon.co.uk/Netgear-RND2110-ReadyNAS-Duo-1000GB/dp/B0016KVW96[/url]) and set up two drives in it in RAID1. I connected the NAS via a gigabit connection but the transfer rate won't seem to budge over 30mb/s when reading and tends to get stuck at around 15mb/s when writing. The primary … | |
Re: [QUOTE=AndreRet;1346791]I believe that there are a few of these get together meetings within the IT industry that was tried and tested in New York and London, and apparently it works wonders.[/QUOTE] I recently went to one in Las Vegas and it's a great experience if you like to learn new … | |
Re: I may be wrong, but I don't think you can store the link as the connection will be terminated at the end of the script. I'd imagine you'd have to reinitialise the connection every time you wish to use it. | |
Re: I don't think there is any solid advice anyone can give you in order to progress career wise, I hate to drag up over used phrases but sometimes it is who you know, not what you know. But in terms of progressing your ability when it comes to programming, I've … | |
Re: Try putting this at the end of your CSS file: [code] .page_item { clear: both; } [/code] | |
Re: You could create a function which adds an item and then does whatever post-adding processing you want? | |
Re: Try this [code] RewriteEngine on RewriteRule ^cat_product.php?cid=([0-9]+)$ /cat_product.php [/code] | |
Re: Your htaccess file should not have an extension of .txt the file should be called .htaccess (note the period [b]before[/b] "htaccess") I also recommend checking out this page: [url]http://www.yourhtmlsource.com/sitemanagement/urlrewriting.html[/url] It has some good examples and a lot of information. | |
Re: More often than not you use the query string (the data in the URL that is fetched with $_GET) to pass data between pages which is used when selecting the content to be displayed. For example if you had a file that could display products from three different categories you … ![]() | |
![]() | Re: Do you mean you want your application to only be executable by one specific computer? Or do you only want one instance of the application to exist at any one time? |
Re: Can you post the code that generates this table? In the mean time try to copy and paste the code you use for the download links but replacing the download link field with fieldid. If you can post the code up then I will edit it for you. | |
Re: What is the problem exactly? If the text file contains queries each on a line of their own then you could loop through the file line by line and execute the query that is on each line. | |
Re: Hey Marty6, This will more than likely just be because of how you have coded the links, I imagine they look like this: [code] <a href="http://localhost/">Link</a> [/code] All you have to do is replace localhost with the actual domain name of the website (in the source code files) and things … | |
Re: If you are still having issues with this you may want to try using the built in PHP function for changing your working directory which is chdir [url]http://www.php.net/manual/en/function.chdir.php[/url] Likewise PHP has a function for retrieving your current working directory, getcwd [url]http://php.net/manual/en/function.getcwd.php[/url] You should also try echoing the result of the … | |
Re: From the sounds of it the user you are connecting to the database as does not have permission to execute the stored procedure, check out this page on how to grant all privileges to a user: [url]http://www.ntchosting.com/mysql/grant.html#How_to_GRANT_privileges_to_users[/url] Do bare in mind though you shouldn't necessarily grant all privileges to a … | |
Re: [QUOTE=itmasterw;1222477]you may also want to look at [url]http://connectionstrings.com/[/url] They have a very good list of connection strings for jus tabout anything.[/QUOTE] Thanks for that link, you have no idea how useful that will be to me in the next week! I should be doing some database centred work this week … |
The End.