1,317 Posted Topics
Re: I don't think that this is possible. If you find a way I hope that you'll post it. I tried some reverse engineering by using the html output from word for a document with a header and footer. The best I could get was the header and footer listed as … | |
Re: Your question isn't clear so that's probably why you didn't get any answers. You can use PHPMyAdmin to edit the records and insert whatever value that you need or you could get fancier and write a program but unless there will be a lot of change, it's probably not worth … | |
Re: There are a number of programmers editors out there that support a variety of languages. I have used Context and it has "highlighters" for many programming languages. You don't say what your objective is. If it is a learning exercise where you are prepared to reinvent / modify the wheel, … | |
Re: A little Googling usually comes up with an answer for the easy questions! The easiest thing to do is to install a package that gives you the whole LAMP system in one go. I'm not a Mac user (so I can't give a testimonial for any particular package) but the … | |
Re: This site povides various versions that you can download. You can probably take the Access version and see how they did it. [URL="http://bibledatabase.com/free_bible_software.htm"]http://bibledatabase.com/free_bible_software.htm[/URL] | |
Re: Since you haven't had any responses, I'll take a crack at it to get the ideas going. I'm not providing any code, just some thoughts. I'll assume that you have a specific page where the links will appear and that there could be any number of such links. I think … | |
Re: A little but of googling would lead you to [URL="http://www.gigabee.com/pig/"]PIG[/URL], the PHP Interest Group that has a specific interest in ICQ. I suggest that you use that site to get an answer. | |
Re: Just a comment. I once spent a lot of time trying to get mailing to work correctly, especially when adding attachments and so forth. I found the [URL="http://lwest.free.fr/doc/php/lib/index.php3?page=mail&lang=en"]Libmail class[/URL] and downloaded it and I haven't looked back. The interface is simple and it works every time. I know that there … | |
Re: I have recently been looking into this. There are a couple of free options to generate keys and so forth but the actual activation is probably additional development if you want to automate it. [B]Kenetix[/B] This is a pretty simple approach [URL="http://www.kenetix.net/Utilities-License_Generator.html"]http://www.kenetix.net/Utilities-License_Generator.html[/URL] [B]Activelock[/B] There was oriiginally built for VB but … | |
Re: Excel can read HTML and open it as a spreadsheet. My Desktop Write utility takes advantage of this to create Excel, Word and other types of output. Get it here: [URL="http://innovationsdesign.net/wb_2.7/pages/tech-resources/downloads.php"]http://innovationsdesign.net/wb_2.7/pages/tech-resources/downloads.php[/URL] | |
Re: This has come up a number of time recently. If you do a search you will find the other posts and the suggestions made. I have started to experiment with the latest version of a PHP Excel Reader which you can find here: [URL="http://code.google.com/p/php-excel-reader/"]http://code.google.com/p/php-excel-reader/[/URL] It seems to be very capable … | |
Re: It's worth doing a search of previous postings because most common questions have been asked and answered before. I got this link from a previous post: [URL="http://corz.org/serv/tricks/htaccess2.php"]http://corz.org/serv/tricks/htaccess2.php[/URL] If it doesn't answer your question, there are a number of previous posts that you can look at. Chris | |
Re: If you don't want it to get too complicated why don't you use a service rather than build it from scratch? More specifically, something like Google Docs or a free forum where you could have an item for each game. These have sign-in capabilities. Not sophiticated but could work. There … | |
Re: There are a number of ways to do this. You haven't posted any code or provided specifics. If you use a Meta Refresh to do the re-direct, you should be able to include other code in the same module. ![]() | |
Re: A utility called HTML2PDF can do a reasonable job of this. See my review and tips on using this package: [URL="http://innovationsdesign.net/wb_2.7/pages/tech-resources/downloads/html2pdf.php"]Link[/URL] | |
Re: I tried logging in and then I logged out. Assuming that the logout button does something, there is something missing because I can then still go directly to Members.php. I didn't try accessing Members.php before I tried to log in, but maybe that will work as well. There is something … | |
Re: Starting with the obvious, why are you using: [code]$id = "<?php \$lastid = \"$lastid\"; ?>";[/code] instead of: [code]$id = $lastid;[/code] | |
Re: Here is one that works: [URL="http://www.micahcarrick.com/04-19-2005/php-paypal-ipn-integration-class.html"]http://www.micahcarrick.com/04-19-2005/php-paypal-ipn-integration-class.html[/URL] | |
Re: You could include it. Your included file could be a PHP file containing the html with a $content = " statement before it. You could also use fread to read it into $content. | |
Re: All you need to do is a bit of searching. I don't think that you need anyone else to do that for you. Try this thread: [url]http://www.daniweb.com/forums/thread49627.html[/url] | |
Re: Start with W3schools [URL="http://www.w3schools.com/"]http://www.w3schools.com/[/URL] Then spend some serious time downloading some Open Source systems and examining how they are structured and how they work. Find some well structured examples then make some improvements for practice. You will certainly need to spend some serious time coding but you will also need … | |
Re: I did quite a bit of experimenting with html2PDF in the past. I have used it successfully for converting a schedule in a table to a PDF version. I put your code into my test environment and gave it a try. Here are a few observations: 1. You reference a … | |
Re: Someone posted a similar question recently. The answers aren't quite a "how-to" but they are a start: [URL="http://www.daniweb.com/forums/thread120918.html"]http://www.daniweb.com/forums/thread120918.html[/URL] | |
![]() | Re: fopen_wrappers has to be enabled in order to use file_get_contents with a URL. This may not be the case on some servers, in which case you may need a local php.ini file to enable it. ![]() |
Re: If you need a shopping cart because you want to sell something online, there are all kinds of open source (free) shopping carts that you can download and use. If you use PayPal you can even use their shopping cart. If you are doing it as a learning exercise, then … | |
Re: A few observations: 1. When you post code, you should use [code] tags to have it format properly. 2. You don't need the <html> <head> and <body> statements. PHP takes care of that. 3. $subject on line 16 isn't defined (at least in what you have shown us). 4. The … | |
Re: If Google Checkout works like PayPal and if the name of the module is any indication, then pay_success.php is the module you need to be looking at. This presumably receives the payment confirmation from Google and their specs for the facility should tell you what this module needs to do. … | |
Re: There are a number of libraries that allow you to build a PDF file. What I wanted to do was to (dynamically) convert an existing (html) output into a PDF without having to do a bunch of additional work. I found a way to do that using something called [URL="http://html2fpdf.sourceforge.net/"]html2pdf[/URL]. … | |
Re: I have done both of the things you want to do. [B]Screen Scraping[/B] I have been using a screen-scraping class quite successfully for some time. It runs nightly, logs onto a website, navigates to a specific page and then extracts data from a table. Get the class [URL="http://www.troywolf.com/articles/php/class_http/"]here[/URL] [B]Text Messages[/B] … | |
Re: It might depend on the level of PHP and/or how you have PHPMaker configured. It seems that you would have a better chance of a resolution by using the PHPMaker forum and /or support. | |
Re: Assuming that you have a login module, it should be setting a Session variable for the user to indicate that he/she is properly logged in. You need to check this variable anywhere that you have functions that require a login. You may, in fact want to make this more than … | |
Re: Changing imagecopyresized (line 14) to imagecopyresampled (leave the parameters the same) in the resize_image function should give you somewhat better quality. Chris | |
Re: You need to use some Ajax. If you search the Ajax forum you will probably find the answer. You can also look at: [URL="http://www.w3schools.com/ajax/default.asp"]http://www.w3schools.com/ajax/default.asp[/URL] | |
Re: I used to use a text editor but I've been using NetBeans for a few weeks now and I'm quite happy with it. I used to use a number of separate tools that are now in one place with Netbeans. Chris | |
Re: I haven't used Google Docs before but I signed in and it took me all of 5 minutes to create a test spreadsheet and to set the sharing option so anyone can view it. This has to be the simplest way to get a spreadsheet online in no time. Here … | |
Re: The [B]strtotime [/B] function is useful for this sort of thing. Here is a little routine that calculates the 2nd and 4th Saturdays in May (as an example): [code] <?PHP $wk = strtotime ("first saturday may 2009"); if ($wk == false) { echo "<br>Not able to interpret the string "; … | |
Re: There is a site named myweb.com but I presume that you mean your own domain. If you have a site on a virtual server (which most of them are) to set up a new sub-domain, you would normally have to go to the Control Panel provided by your web host … | |
Re: This might help: [URL="http://www.daniweb.com/forums/thread184225.html"]http://www.daniweb.com/forums/thread184225.html[/URL] | |
Re: Not sure how you made it work even with a JPEG. I found a number of errors: 1. In one case you have used imagejpg instead of imagejpeg 2. You have a statement: [code] $src = $po($finalfilename);[/code] which makes no sense to me. It seems that the source file should … | |
![]() | Re: if you change line 84 to [code]if (($rowcount % $picsperrow) == 0) { [/code] it eliminates the error and hopefully gives you what you wanted. |
If you are still using AVG anti-virus Version 7 and you're about to install the latest version in response to the threats about end of support for Version 7, be aware that there are a couple of problems: [LIST] In Vista, the install can have a problem if User Account … | |
Re: Try this instead: [code] print ('<table style="border-width: thin; border-style: solid; cellpadding=1; border-width: 10px;">');[/code] Don't know why you'd want a 1400 pixel border. I changed it to 10 pixels but you can modify it to whatever you really need. | |
Re: Apparently, when you use a full URL, the page is parsed outside of your environment so it doesn't know anything about your session. I don't really understand why you feel obligated to use full url's but if it can be architected so they aren't necessary, it will probably be simpler. … | |
Re: You need a content management system and yes many/most of these are written in PHP. I use one called Website Baker because I find it is the easiest to understand and use, for me, and for those who maintain the websites that I build for them. If you want to … | |
Re: You may want to password protect the directory and then provide your own facility (for authenticated users) to access these files rather than let them access them directly through the file system. I think that it complicates it if you try use your own controls and system controls for user … | |
Re: You can have a look at this online service. They charge an annual fee: [URL="http://www.toufee.com"]http://www.toufee.com[/URL] | |
Re: If you use the full path for the images in the subdomain instead of a relative (local) address, it should work ok. | |
Re: PHP doesn't seem to like <?PHP without a space after it. This was one of the problems in your original version. If you try nav33n's version and make sure that the second line doesn't get pushed up against the <?PHP without a space, then that version should be clean. Chris | |
Re: You might want to look at netbeans [URL="http://www.netbeans.org/"]http://www.netbeans.org/[/URL]. This isn't just for Java, it supports a bunch of languages, including PHP and Html/xml, it has lots of features and its free. I haven't taken the time to figure it out yet (I'm still comfortable with my simple tools) but when … | |
Re: I believe that the $_post should be $_POST |
The End.