- Upvotes Received
- 4
- Posts with Upvotes
- 2
- Upvoting Members
- 4
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
12 Posted Topics
As a former PHPEdit user (Waterproof SAR), when I went full-out linux for my desktop systems, that stopped being an option. I've since gone head first into jEdit and absolutely swear by it. Great set of plugins to do just about anything you'd like and a friendly enough API to …
Hi, I'm in need of assistance with mod_rewrite. Currently, I've a folder at www.domain.com/folder. I need to leave the files where they are, but have the address bar in the browser appear as someothername.domain.com Any help would be greatly appreciated! I should mention that I've already got a few .htaccess …
Hi, I'm a total hack with jquery and need some help. I've an html select list and a text area. The select has about 25 options in it. When a specific option is selected, I'd like to populate the text area with some text. Example: HTML: <label for="comments">Technician Comments: </label><textarea …
At times, I have need to push all submitted form array values into $_SESSION. To do this, I've written a small function: function addPostToSession() { foreach ($_POST as $key=>$value ){ $_SESSION[$key]=stripslashes(strval($value)); } } This works well, as long as $_POST is one dimensional, but in a form with checkboxes, $_POST …
I'll try that this morning. Thanks to you both for the input. I'm pretty decent at PHP/MySQL, but not so much with javascript, though I'm learning. :) I'll follow up here with success/fail, but it sure looks like it's the thing that I need. Thanks! -Ray
Yes, i agree with pritaeas. It is going to be far easier to get help if you include at least the structure of the db table and a sample of the code you're using. I'd bet you'll have to do a foreach loop inside a while loop, but that's just …
I've been using a great function I found online (abeautifulsite.net) for inserting an array into a MySQL data table. The function was designed to take an array (typically $_POST), allow you to exclude particular field names, provide the table name and the array name and let it fly. It is …
[QUOTE=JukesK;1742470]bit of a coding dilemma here.. If i have a php page (list.php) that works on its own when browsed to or put in Iframe, why would it not work correctly when the contents are either <?php include("list.php") or the code put directly into the index.php page The iframe version …
[QUOTE=veledrom;1603772]Hi guys, This will probably be very easy for some of you but I failed even I had a website examples. I want [COLOR="Red"]http://s12345.webspace.info/http/myapp/[/COLOR] to bew replaced with [COLOR="Green"]http://portal.myapp.co.uk/[/COLOR] How can I do this with htaccess? Thanks in advance[/QUOTE] Assuming this is a permanent move (301 - moved permanently), create …
IMNSHO, while your idea is good, it should also be combined with and XML sitemap for the crawlers to chew on. Therein, you can be as verbose as you need to (i.e. include the full text of the text in the 'text-heavy'images, etc...). You've got what sounds like a solid …
A little googleing on javascript snippets for checking form boxes landed me here (1st link for this query: "javascript 'check all' boxes in form" [url]http://www.somacon.com/p117.php[/url] There are any number of ways to implement this, but imnsho, javascript is going to be the most cross-browser friendly. HTH, -Ray
[QUOTE=forzadraco;654754]i have a problem: i want redirect everything page in url: ex: [url]http://dracotech.biz[/url] to [url]http://www.dracotech.biz[/url] . want to add www. in everything request from user.. maybe with mode rewrite in apache but i didn't find way how to do it..[/QUOTE] *if* your host supports redirects from .htaccess files *and* if …
The End.
rsleventhal