1,317 Posted Topics
Re: [URL="http://coppermine-gallery.net/"]Coppermine[/URL] is pretty full-featured photo gallery. It appears that it can handle EPS files (see [URL="http://forum.coppermine-gallery.net/index.php?topic=12234.0"]this link[/URL]). I would do a bit more investigation to be sure that it can display them (not just upload them). | |
Re: [CODE=php] <a href=xxx.php><img src="_images/banner1.jpg"></a> [/CODE] | |
Re: If you give it a try and come up with something and you have a specific problem that you have tried to solve but can't: THEN, someone may be able to help you. It's your assignment so you have to do the work. | |
Re: On some hosts, you can "pipe" mail to your php program and it can then inspect the info and take whatever action is required (e.g. send an email). This isn't allowed by some web hosts so the other alternative would be to read the mail file on a regular basis … | |
Re: This is essentially a (piece of a) customer relationship management (CRM) system. If you do a search, you will find a bunch of these systems, some free and some not. Don't know if any of them have phone system integration but I am sure that you will find out. As … | |
Re: THis is what you need [URL="http://html2pdf.fr/"]http://html2pdf.fr/[/URL] | |
Re: try a print_r for $_POST at line 19 to confirm what is being posted. | |
Re: When they logout you could close the current window and open a new window with the logout / login info. ![]() | |
Re: You can't have a nested form (and I don't know what you mean by a sub-form or what you plan to do with it) but if your objective is to know which check boxes have been checked, then the name assigned to each checkbox should have a consistent part and … | |
Re: see [URL="http://www.w3schools.com/html/html_forms.asp"]http://www.w3schools.com/html/html_forms.asp[/URL] If you don't know how to do the MySQL part you can find that on W3Schools as well. | |
Re: One way this is done is define all of your text as variables as follows: [CODE=php] $MOD_NEWS['TEXT_READ_MORE'] = 'Read More'; $MOD_NEWS['TEXT_POSTED_BY'] = 'Posted by'; $MOD_NEWS['TEXT_ON'] = 'on'; [/CODE] That would be your English module (e.g. en.php) You then produce a module with the same variable names with the appropriate translated … | |
Re: There is nothing built into PHP to explicitly support this (that I'm aware of). You can certainly build an application to support it, assuming that you have some PHP experience as well as the appropriate knowledge to build the local client component. There are some utilities around (e.g. [URL="http://www.sourcecodeonline.com/details/mysync_-_mysql_synchronization.html"]MySync and … | |
Re: [URL="http://html2pdf.fr/en/default"]HTM2PDF[/URL] works quite well as long as you feed it valid HTML. There was a posting on this topic within the last couple of days and I provided a brief example. You should find it by a search on this site. | |
Re: What is your reason for saving everything to one row? It would be simpler to save each one as a separate record. Then, the counting and checking for duplicates is quite straightforward. If you append everything to one record, then you have to read that record every time, break up … | |
![]() | Re: Two points: 1. Keep your code simple unless you are really good (in which case you shouldn't be coming here asking for help). 2. The first skill is understanding the language syntax and writing the code. The second skill is learning how to debug so you don't have to come … |
Re: Prince, Your statement needs to include: PRIMARY KEY ( `id` ) ) As the error says, the auto column must be defined as a key. Suggest that you use PHPMyAdmin and so a sample create first (building the structure not by entering an SQL statement). It will tell you the … | |
Re: You should be able to do this using an include. You can put an If ahead of the include and decide which module to include based upon your specific criteria. | |
Re: Your IF and the ELSE IF are both checking if submit1 is set. It can only re-direct to script1 or to nowhere. Suggest that you give the two button different names and check each one. | |
Re: I built a system like that for use on a much larger and broader scale. It is sold as a service so the actual system isn't for sale (and would be much more than you need). If you can find a system that does most of what you need, that … ![]() | |
Re: I am working on getting info from an ASPX https site that requires a login at the front-end. I did some screen-scraping in the past using the class_http library by Troy Wolf and that worked very well. Unfortunately, ASPX uses javascript and postbacks and it becomes very complicated. I spent … | |
Re: You need to provide the details of how the window is being opened. | |
Re: Normally, you only get the emails that bounce back because of a bad address (coming back to the sender email address). Some systems have the ability to request a confirmation but I don't see this used much any more and it requires the user at the other end to willingly … | |
Re: As Ardav said, you are getting exactly what you asked it to do. If the action on your form is contact/retreat.php then you will only get the contact form (and that is what is happening). You have two basic choices: 1. Make [url]http://naniboujou.com/retreat.php[/url] the action on your form; or, 2. … | |
Re: If you are interested in flash, then you are in the wrong forum. You should probably be posting in: [URL="http://www.daniweb.com/forums/forum28.html"]http://www.daniweb.com/forums/forum28.html[/URL] | |
Re: Which is better for your needs, a van or a 4 door sedan? Without more info, the only real answer is "it all depends". You don't need to choose because you can use both. Some things can only be done in Javascript but having that within a PHP context gives … | |
Re: If I understand what you are trying to do correctly, I think that you need two hidden variables with consistent names. For example: [CODE=php] echo "<input type=\"hidden\" value=\"".$data['id']."\" name=\"id\">"; echo "<input type=\"hidden\" value=\"".$data['name']."\" name=\"name\">"; [/CODE] You can then access them as id and name in the receiving program. Be careful … | |
Re: You will need to convert to a time stamp and then convert back to what you need. First, create an arbitrary date using the month that was passed (e.g "2010-".$m."-01"). Use strtotime to convert it to a time stamp and then use Date to get the full text month. | |
Re: Where is $_POST["DB_Backup"] coming from (and what do you expect it to contain)? Your first module has a select statement but it doesn't have a form definition. To further complicate it, you are including that first module into the second one. If your first module had a form with the … | |
Re: It depends what the captcha is doing. If you get to the "action" page for your form before the captcha is verified, then you can save the variables into Session variables or make them hidden variables attached to a "Back" button to go back to your form. | |
Re: PHP 5 and MySQL 5 are the current versions. A good source is [URL="http://www.w3schools.com/"]w3schools[/URL]. They have tutorials on many topics, including PHP. You will need to know HTML and you will want to know some CSS (and they have tutorials on both if you need them). php.net and mysql.com are … | |
Re: First of all, even though Joomla is written in PHP, this isn't a Joomla forum. Second, if you want an answer, you need to provide enough info and show what you have done so far to investigate or fix it. You give no indication if this is a stock version … | |
Re: You haven't defined a form! Before you start generating Select and Option statements, you need to define a form (<form action=xxxx, method=post>) where xxxx is the module that will receive the form output (it will default to the same module that creates the form). At the very end, you will … | |
Re: There are two ways to do the .htaccess depending how php is set up: For web servers using PHP as apache module: AddType application/x-httpd-php .html .htm For web servers running PHP as CGI: AddHandler application/x-httpd-php .html .htm The syntax is a bit different than what you had but the main … | |
Re: It's actually quite easy to save the output as Excel (or Word or ...) but first you have to produce a table on the screen in the format that you want to see in Excel. You can go to my site and download the Desktop Write utility that will save … | |
Re: This might help: [URL="http://ma.tt/2003/10/wildcard-dns-and-sub-domains/"]http://ma.tt/2003/10/wildcard-dns-and-sub-domains/[/URL] | |
Re: [URL="http://lmgtfy.com/?q=calculate+domain+age+php"]Domain Age[/URL] | |
Re: [URL="http://www.daniweb.com/forums/thread205806.html"]My problem[/URL] and yours may be the same. I tried all the normal stuff and generally they didn't help. Two things that did work: [LIST] [*]F11 - after enough tries, this will get you into the HP Recovery Manager (assuming that it is set up on your machine). This gives … | |
Re: If you are doing it just to learn PHP, then w3schools is a place to start in order to learn some of the basics. If you are doing it because you would like a working website sooner rather than later, then I suggest that you use a Content Management System … | |
Re: Why are you checking for >1 on line 37. I would think that you'd want to check for >0. As it is, your insert may fail because there is already one on file. | |
I am classing this as a CSS problem because I don't know what else it could be. The problem is that when I insert links into a page, only the first one (or maybe the second as in the example below) is recognized as a link (ie the pointer turns … | |
Re: I wanted my own cart to potentially handle multiple affiliated vendors on the back-end, including Amazon. I had to change the cart program to be able to link directly to the vendor's page rather than use an internal page to show the details of the item. I am not familiar … | |
Re: I think you need an else on line 17 before you show him as logged in. | |
Re: If you want to search on the month, then you probably need something like: [CODE] Select * from $table where departure like '$month/%' order by departure [/CODE] | |
Re: Matty, The search that you saved has the parameters (e.g. search=Kim) as part of the string. If you want to start from scratch with a new search then the string should be: [url]http://bluelinedown.netau.net/new_test.php[/url] Instead of: [url]http://bluelinedown.netau.net/new_test.php?search=Kim&body=on&title=on&desc=on&matchall=on&submit=Search[/url] | |
Re: I have had no problem with formatting. Word correctly picks up the html formatting and uses it. One thing that I did different from you was the header statement on line 5. I used the following: [CODE=php]header("Content-type: application/msword");[/CODE] Give it a try see if it makes any difference. | |
Re: I haven't used it myself, but [URL="http://www.uniformserver.com/"]Uniform Server[/URL] is promoted as a LAMP stack that you can use for a production server. | |
Re: There are a couple of systems that you probably want to look at if you are serious about this: [URL="http://www.phplicengine.com/"]PHPLicengine[/URL] seems to be pretty complete with respect to licensing. It does also seem a little bit complex to understand so you would probably need some time to experiment with it. … | |
Re: Suggest that you echo each of the variables to see if they are what you thought they were. | |
Re: Have a look at this: [URL="http://wordpress.org/support/topic/memory-exhausted-error-in-admin-panel-after-upgrade-to-28"]http://wordpress.org/support/topic/memory-exhausted-error-in-admin-panel-after-upgrade-to-28[/URL] |
The End.