- Strength to Increase Rep
- +9
- 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
262 Posted Topics
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: prestashop is good for ecommerce - in my opion :) ![]() | |
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>"; | |
![]() | Re: Welcome to PHP. Firstly get yourself an IDE, there are many threads on this forum dicussing the pros and cons of different ones. Have a play with them, and find one **you** are comfortable with. Either go down the route of installing Apache & MySQL, or install XAMPP or WAMPP. … ![]() |
![]() | |
Re: Change these to protected or public: private $name; private $cno; private $clocation; Having them set to private means they cannot be overwritten (if i remember) *EDIT* Also check that you DB is connecting | |
Re: > Thanks, I am trying to write functions and some OOP. How would I do this using OOP. MySQL is not capable of OOP, either use MySQLi or MySQL with a PDO wrapper | |
Re: stay away from projects until you have a good understanding of the code that you are doing, or using from other places. | |
Re: Is Outlook set to receive HTML emails? This is not the default setting, normally it is plain text | |
Re: http://www.php.net/manual/en/image.installation.php GD would have to have been installed during PHP compile. If you use PHPINFO() it will tell you if GD is installed. <?php phpinfo(); ?> Save it as a page, upload the file, and use your browser, it will show you loads of info, use browser find function to … | |
Good afternoon all. I have built the below class, and seem to have a problem where nothing is being displayed: <?php include_once '../include/tableStructure.php'; include 'crud.php'; //<- class by pritaeas class navigation { public $dsn; public function __construct() { $this->dsn = new crud($username, $passwd, $tableConfig); } public function nav($table, $live, $loc) … | |
| |
Re: Nor the full error | |
Re: For this you would need to use a javascript call. http://www.w3schools.com/js/js_popup.asp | |
Re: Some hosts remove access to the php.ini file. Try creating one in the root of your domain folder and using `phpinfo()` to see if this new file is picked up. If it is not, contact you hosting company, or move hosts, or use `ini_set`(?) <- cant remember fully | |
Re: Where is the code for `send.php` or is that what `gistfile1.txt` is? This part: // get meessage to send $message = $_GET['message']; // loop through names / emails on index form for ($x=0; $x<count($_GET); $x++) { if ($_GET["mail_$x"]) { // mail setup $to = $_GET["mail_$x"]; $subject = "News From Tap … | |
Re: Start a new thread. STOP BRINGING OLD THREADS BACK TO LIFE!!!! | |
Re: MySQL is not capable of OOP unless you use the PDO wrapper. So you will need to change either to using PDO with MySQL, or go to MySQLi OOP. Is your DBConnector actually returning a live connection? WHat is the content of that Class? ![]() | |
Re: Can you confirm are you using ZF or ZF2? Also there must be more to the error. How have you set the error handling? | |
Re: Would you mind posting how it was solved? Would be helpful for when peopl search. Thanks. | |
Re: Why are you using `$arr`, your variable is, as Diafol has pointed out -> `$xml` ![]() | |
Re: I think you variable for the values needs to be in single quotes $parsedArray[20] Should be: '$parsedArray[20]' | |
The End.