[PHP] How to extract php source code from joomla

2013-07-22 Thread elk dolk
Hi all, I want to build a website using Joomla 2.5 . It should have 5 pages: index.php pageOne.php pageTwo.php ... How can I get the php source code for those pages? I installed joomla 2.5 on my windows box and use XAMPP's appache web server  thanks

[PHP] How to extract php source code from joomla

2013-07-22 Thread elk dolk
- From: Ashley Sheridan a...@ashleysheridan.co.uk To: elk dolk elkd...@yahoo.com Cc: php-general@lists.php.net php-general@lists.php.net Sent: Monday, July 22, 2013 11:45 PM Subject: Re: [PHP] How to extract php source code from joomla On Mon, 2013-07-22 at 12:18 -0700, elk dolk wrote: Hi

[PHP] How to extract php source code from joomla

2013-07-22 Thread elk dolk
I am allowed to use tools or code by hand , it does not matter ,the professor wants to have the source code.

[PHP] How to extract php source code from joomla

2013-07-22 Thread elk dolk
I study for MSc degree at university.  Are you in an advanced class?

[PHP] photo file size

2008-10-01 Thread elk dolk
Hi All, I  have some photos with  different file sizes like 100KB 125KB 200KB ,… I  want to shrink them and reduce the file size to Max 60KB  without sacrificing image quality and size! PHP should have a solution for reducing the size of files in Batch. Please comment. thanks

[PHP] photo file size

2008-10-01 Thread elk dolk
Without sacrificing size AND quality? So you don't want to lose enough data to get to a max 60KB amount, without actually losing data... wow, that won't be easy; or even better, it will probably not even be possible. Changing formats makes the size smaller, but always loses some

Re: [PHP] Header Redirect

2008-05-27 Thread elk dolk
What about using .htaccess for redirection for example, to redirect a single page: Redirect 301 /oldpage.html http://www.example.com/newpage.html Stut [EMAIL PROTECTED] wrote: CC: PHP General List php-general@lists.php.net From: Stut [EMAIL PROTECTED] To: Robert Cummings [EMAIL PROTECTED]

[PHP] PHP Editor

2007-11-11 Thread elk dolk
Frank Lopes wrote: Being very new to PHP (empahsis on VERY...), I wonder what most of you use to develop in PHP? Personally I use vi or kate. An editor that can give you WYSIWYG and color print outs. Has anybody any idea?

[PHP] Re: Hide the real URL

2007-07-26 Thread elk dolk
Paul Novitski [EMAIL PROTECTED] wrote: Date: Thu, 26 Jul 2007 06:50:47 -0700 To: php-general@lists.php.net From: Paul Novitski [EMAIL PROTECTED] Subject: Re: [PHP] Hide the real URL Thank you Paul and everybody for the useful suggestions I need some time to test all of them. elk

[PHP] Hide the real URL

2007-07-26 Thread elk dolk
Hi all, I want to hide the real URL to my images by masking it with PHP the code looks like this: $query = SELECT * FROM table; $result=mysql_query($query); while ($row = mysql_fetch_array($result)) { echo img src='http://www.mysite.com/img/{$FileName}'/; } if you look at the source in browser

Re: [PHP] Creating thumbnails

2007-07-17 Thread elk dolk
Stephen [EMAIL PROTECTED] wrote: Subject: Re: [PHP] Creating thumbnails Vanessa Vega wrote: Good day to all! I would like to ask for some help with creating automatically thumbnail pictures using PHP.. What about security issues ? people can look at your source code to see the path and

[PHP] path finder

2007-06-23 Thread elk dolk
Hi all, When I test my photo album in my IIS testing server relative path in the following code works fine : echo div class=''img src='/img/{$photoFileName}' width='120' height='160' border='0' //div ; but when I upload it to the web server I don’t see my photos, my /home

[PHP] Re: path finder

2007-06-23 Thread elk dolk
On 6/23/07, elk dolk [EMAIL PROTECTED] wrote: Hi all, When I test my photo album in my IIS testing server relative path in the following code works fine : echo div class=''img src='/img/{$photoFileName}' width='120' height='160' border='0' //div ; but when I upload

[PHP] Re: path finder

2007-06-23 Thread elk dolk
On 6/23/07, elk dolk [EMAIL PROTECTED] wrote: On 6/23/07, elk dolk [EMAIL PROTECTED] wrote: Hi all, When I test my photo album in my IIS testing server relative path in the following code works fine : echo div class=''img src='/img/{$photoFileName}' width='120' height

[PHP] Re: path finder

2007-06-23 Thread elk dolk
On 6/23/07, elk dolk [EMAIL PROTECTED] wrote: Hi all, When I test my photo album in my IIS testing server relative path in the following code works fine : echo div class=''img src='/img/{$photoFileName}' width='120' height='160' border='0' //div

[PHP] Re:path finder

2007-06-23 Thread elk dolk
Sorry I have to correct it the above path works : img src='http://www.mydomain.com/something/img/{$photoFileName}' but I can see some of my photos! and when I right click on them I see the properties : url://mydomain/img/26.jpg size 2976 bytes dim 120x160 when I right click on [X]s I

[PHP] PHP5 or PHP4 this is the question

2007-06-09 Thread elk dolk
Hi all, After designing and testing my web pages in PHP 5.2.1 I learned that our web server has PHP 4.4.1 and I have to rollback to version 4 ! . There is no OO implementation like classes or objects in my scripts but every page has some queries the question is : will my scripts

[PHP] IE6 PHP

2007-04-13 Thread elk dolk
Hi all, I have a bunch of thumbnail images that link to larger versions of the images and want to line them up in rows across the screen , using CSS I put them into a separate DIV. To get them to line up horizontally across the window I use CSS to FLOAT each DIV to the left, CSS looks like