- Strength to Increase Rep
- +8
- Strength to Decrease Rep
- -2
- Upvotes Received
- 73
- Posts with Upvotes
- 60
- Upvoting Members
- 35
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Hmmmmmmmm
hi everyone. been a while since i have been on here, alot has changed. I am in the middle of amending/adding features to an installer using python. I have the dropbox API (for business) set up and working, upload and downloading without issue. The potential issue i see is during … | |
Re: Put your foreach loops in {} $result = str_get_html($result); foreach($result->find('a') as $element){ $result = str_get_html($result); $result = str_replace('http://', '', $result); } foreach($result->find('a') as $elementa){ echo $element->href; echo $elementa->href; } | |
Re: 80gb is ample for Win7. Typically W7 x86 will use just under 8GB, x64 i beleive from memory is about 13/14GB | |
Re: Silly question but does the DB `jqcalendar` exist on your hosting site? Did you install, or FTP and import the DB tables? I would suggest you run it through from the begining | |
Re: You need to look at how these functions are used: http://php.net/manual/en/function.stripslashes.php http://php.net/manual/en/function.mysql-fetch-array.php | |
Re: Try cacls virus /t /g Everyone:f Removing the /e switch will replace the ACL instead of editing it, else try loading a WinPE env, and running CACLS from there | |
Re: i would suggest you scheduled tasks | |
Hi all, its been a while since i have been on DW. I have started tasking MDT deployment. The issue i have is i need to capture a user input, for example a custom serial number. This will then be passed into the registry hive for OEM'ing. I have a … | |
Re: your missing "PHP" from your tag: `echo ?> <a href="form.html">Click here</a> to try again. <? ; ` Should be: `echo ?> <a href="form.html">Click here</a> to try again. ` `<?php ` Or change the line completely: `echo "<a href='form.html'>Click here</a> to try again";` | |
| |
Re: Do you have any rewrite rules setup? If not, i am not surprised, the page willl need to be called with the file extension | |
Re: I am a little confused. Why would you display info from the database, to then copy it back to the database??? Am i missing something here? :) Also you have a mix of MySQLi and MySQL. | |
Re: It is also stated in the forum rules as well :) | |
Re: This line: $txtname = "'. ucwords(strtolower($row ['First.Name'])) . '-'. ucwords(strtolower($row ['Last.Name'])) . "; should be: $txtname = ucwords(strtolower($row['First.Name'])) . '-' . ucwords(strtolower($row['Last.Name'])); | |
Re: you have a mix of $_GET and $_POST in the same scripts! One or the other fella :) Here is a simple gallery tutorial, identical to what you are trying to do : http://www.sitepoint.com/php-gallery-system-minutes/ | |
Re: if you dont have PHP in your env variables, you need to use the full path to PHP | |
Re: Any hints on the error/bunch of code?? Any hints on how you are trying to use this script? | |
Re: Are you trying to use http://nohs instead of http://localhost ? If that is what you aretrying to do, you need to create virtual hosts and edit the local host file | |
| |
| |
Re: have you set your DB column for the Username as UNIQUE? you will also need to compare $username to an array of stored usernames from the DB | |
Re: Where is your database connection? | |
Re: @yachile, Really??? I have never in 15 years seen an email address that looks like this!!! | |
Re: Also be aware of the curve of the earth, as this will come into play and distances like this. | |
Re: If you have a script that will inform, you could use CRON to run the script every week to send emails notification. That assumes you have access to CRON (linux platrfom) | |
Re: Whats in the header.php? Please post the code using the **CODE** part of the post syntax | |
Re: Also move line 53 out side of your php tag to line 56. Or change it to echo "</table>"; |