Tagged Questions
1
vote
0answers
58 views
PHP -HTML My PHP Code changed but output didn't changed
Code below is a part of my article adding-verifying codes.
<?php if (isset($_SESSION['errors']) AND $_SESSION['errors'] != '')
{
echo '<h2 style="color:#e53b2c;"><a ...
0
votes
0answers
29 views
Any indent utility for PHP which can break long lines?
I am looking for a utility or program which can indent PHP code.
The problem I have is that for instance PHPStylist takes a line which looks like:
somefun($somerandomvarnamegoeshere1, ...
0
votes
3answers
295 views
Search HTML Source Code for URL (PHP) [closed]
I've seen many things that look sort of like what I need, but none of them do the job right, and I don't have the knowledge or experiance to modify them, since I'm new to PHP (relatively). ...
1
vote
1answer
43 views
excess comma replace issue after creating auto links from tags
HiMy issue is inside the if statement below. My tags structure is like this : tag1, tag2, tag3I achieved auto linking of each tag of each article but:If # of tags is more than 1, I need to replace two ...
0
votes
1answer
109 views
Is there any tool for sorting PHP class methods by name in code?
Hi I was wondering if there was any tool for sorting php code (the methods of a class by name, exactly). I've been googling for a while, but I didn't find anything.
Thanks
1
vote
1answer
84 views
Search PHP source for strings [closed]
I'm looking for some sort of tool that can search a (large) amount PHP source for a given string. It should ignore when the string is used as a variable name or array key.
Bonus points if it can ...
0
votes
1answer
233 views
Firefox tries to download .php file on local apache server instead of render result
I've been trying to install both Apache and PHP from source so they work together, as a "to see if I can" project.
However, when I try to load a "localhost" file, firefox just starts downloading the ...
0
votes
3answers
156 views
Converting entire source code from tabs to 4 spaces
I just realized after committing the CakePHP source to GitHub that they're now using tabs to indent code rather than four spaces. They also define this in the .editorconfig file, which I've changed to ...
0
votes
2answers
369 views
How to hide HTML Page Source in php by detecting the URL
I do not care about people viewing my source code, however, I want Bots to avoid coming on to my site and getting through my security. I was hoping to disable page source viewing. To do this, I am ...
0
votes
4answers
491 views
Accessing and printing HTML source code using PHP or JavaScript
I am trying to access and then print (or just be able to use) the source code of any website using PHP. I am not very experienced and am now thinking I might need to use JS to accomplish this. So far, ...
3
votes
1answer
70 views
php testing all source code used
Whilst working in some other languages, (primarily Java and C++), I have come across useful tools that enable you to compile your program in a certain way that allows you to examine what source code ...
0
votes
2answers
129 views
PHP change link address in html source code
In source code I have address's like this /images/image.jpg js/file.js how to add to this address's server address that will be http://server.com/folder/file.jpg with str_replace() it will be hard, ...
4
votes
6answers
140 views
Delete divs from html source code [closed]
I have html code in which are many divs, and want delete some divs from this code, it's so hard to do with substr() or similar php string function, maybe are better way to do this ?
-1
votes
4answers
106 views
Protecting the PHP code [duplicate]
Possible Duplicate:
Code obfuscator for php?
Encrypt php code
I am developing some projects in PHP. I am a senior Delphi programmer and just starting as PHP Programmer, so some questions ...
-2
votes
1answer
213 views
PHP code to extract source code and search for a given phrase [closed]
I need PHP code to extract the source code from a homepage and search the code for a given phrase. Is there somebody that knows a way to do this?
0
votes
3answers
339 views
Echoing line breaks and tab spaces for source code - common practices? [closed]
Should you echo line breaks and tab spaces to the code you write? Is there any industry standard for this, or does anyone care whether you include newlines and tabspaces for purely tidying the source ...
1
vote
3answers
182 views
In PHP how to deliver website to client without giving them source code
As in JSP we give "WAR" file to clients and it contains .class files and other configuration files but not the source code, is there any way, in PHP, to deliver the project (website) to client without ...
0
votes
2answers
418 views
Get source code from javascript
How can we get the source code of a webpage from a webpage in php and/or javascript?
For exemple, in this website : http://inlinestyler.torchboxapps.com/, you can either enter the css or type the ...
-2
votes
1answer
401 views
Where is the source code for built-in php functions located?
I have a local server installed on my Mac (MAMP). Where I can find the PHP functions in my computer?
What is the path to the functions folder? For instance, rand(), time(), isset(), explode().
I ...
0
votes
1answer
159 views
PHP : Copying the actual script content of a PHP file and not the executed result
What I have to be able to do is copy an entire folder from a remote source to the local server executing the PHP file. I can do that fine except for one problem : PHP files... Obviously, I can't just ...
-5
votes
1answer
1k views
Get HTML code from rich text editor into database [closed]
I am having issue with getting html code from the text entered in rich text editor. I want to have a rich text editor where user enters paragraphs, bold italic words, list etc etc. When the user ...
1
vote
1answer
221 views
Is there any way to batch “pretty” format PHP files in a folder?
I have a folder of PHP files. The source code to these files is compressed into a few lines with no line breaks or other conventional formatting and is extremely hard to read.
I have found several ...
0
votes
0answers
200 views
Iframe onload working on blank page but not loding in embedded website
so I have following script:
http://jsfiddle.net/8zJEt/
<iframe width="99%" style="z-index:1" height="820px" marginheight="4px"
marginwidth="4px" id="ifSearch" scrolling="no" ...
0
votes
2answers
234 views
file_get_contents not loading the full source code because parts are loaded on page load
I want to copy the entire source code of an external website to a file for later modification and analysis ....
But a table on domain.com/stats is not static HTML but is build by JavaScript and ...
-1
votes
1answer
137 views
file_get_content different output then actual source code
Why doesnt
$txt = file_get_contents('https://www.cloudflare.com/system-status.html');
get the correct source code of https://www.cloudflare.com/system-status.html
file_get_contents output:
...
0
votes
1answer
395 views
write to / create file in php
Hi I am getting the source of a page as followed:
<? $txt = file_get_contents('http://stats.pingdom.com/file');
echo $txt; ?>
and printing it on the screen but to be honest I actually want to ...
0
votes
2answers
194 views
Make relative links into absolute ones
I am requesting the source code of a website like this:
<? $txt = file_get_contents('http://stats.pingdom.com/qmwwuwoz2b71/522741');
echo $txt; ?>
Bu I would like to replace the relative ...
-2
votes
3answers
120 views
Recreating websites with php
At school, there are blocks on sites. I intend to undo that. Even if I don't, I like this idea. So: I have a php page (source.php) to get source code of any site (no cross site ajax).
<?php
...
0
votes
5answers
148 views
Making sense of a large PHP code base [closed]
I've been given a large and heavily modified custom PHP framework to make sense of, and then implement various new changes. It's had several developers work on it in the past, each making their own ...
1
vote
3answers
156 views
Where can I find the source code for the PHP `date` function?
I've gotten this far: http://svn.php.net/viewvc/php/php-src/trunk/
After that though I'm stuck on which directory the source for which functions would be in!
Does anyone know?
0
votes
1answer
40 views
Is there a way to see my entire php file along with all the files it includes in one page of source code?
Im just starting to work with MVC's and something I thought of that would be really helpful for me is if its somehow possible to see my entire php script for a page as one big source file ( as php, ...
0
votes
1answer
200 views
Source code like string
I have a this code for generating an iframe for some webpage and I need to show source code of that icframe below. You can also can see what I'm trying to do at www.pluspon.com/get3.php :
<?php
...
0
votes
1answer
363 views
Getting html source code in php
I got a few links, some on rapidshare and some on other uploading hosts.
I tried getting the source code with curl and file_get_contents and then search for "Deleted" or so but I was not able to get ...
0
votes
2answers
82 views
Check if viewed source not render
Is there a way to check if the current request was for page source (HTML) not actual site?
And if not (which I think is the case), is there a way I could somehow "parse" this out of request ...
0
votes
2answers
67 views
Execute javascript files into my code from external sites
I have this code to show me the some web page into my domain (in my page):
<?php
$url = 'http://www.kupime.com/';
$data = file_get_contents($url);
$data = '<head><base href='.$url.' ...
0
votes
2answers
107 views
Java program only gets part of web page source when going through a loop of many
I have a very basic java script to pull the source code of a webpage and save it to a .txt file. Works amazingly well if done with just one at a time but when I go through a loop of say 100 pages all ...
3
votes
4answers
305 views
Protecting source code from web host?
Are you concerned at all with your web host having access to all of your files and being able to essentially download your entire web app? What steps can you take to protect yourself? More ...
1
vote
2answers
440 views
What encoding to use for cross-platform development (PCs, Macs, Linux)?
We primarily develop our PHP application on a Windows environment and have stored our text source files in PC / ANSI.
However now, a developer is joining us who uses a Mac platform and we're running ...
0
votes
3answers
107 views
Hiding/Obfuscating A Javascript Variable In The Source
Let's say, for the sake of argument, I have a page with a progress bar that's advancing based on the number of times a certain hashtag has been tweeted on Twitter. This could be generated something ...
1
vote
5answers
310 views
Do you know any code highlight PHP Code [closed]
If you guys login here:
https://edit.php.net/
Try Edit an PHP File, you guys will see the code was highlight with code, bug error...
I want to do a code like that in PHP.
is jQuery can do highlight ...
0
votes
2answers
541 views
PHP login system on web browser to android app
I have a php login system that was not developed by me, it is live and now i'm asked to make it into an app but, from the login in the web, the source code does not reveal.For example, the id of the ...
0
votes
3answers
541 views
Hiding XML code in view source code
I have to send an XML request to recover data from a remote server and parse it using PHP. That much, I've managed to do... sort of. The trouble is, the XML I get back from the remote server looks ...
1
vote
7answers
1k views
PHP foreach - show line breaks in source code
I'm currently using the following PHP foreach code below. When I view the source code, it's a giant block of list items.
My question is, how can I edit this so each list item in the source code is on ...
5
votes
5answers
170 views
Weird comments above PHP function declarations
I noticed that a lot of scripts have these type of comments:
/**
* Retrieve list of themes with theme data in theme directory.
*
* The theme is broken, if it doesn't have a parent theme and is ...
0
votes
2answers
192 views
How to use htmlspecialchars in preg_match
This is my code, it will echo "Not working"
$f = file_get_contents("http://www.google.com");
$text = htmlspecialchars( $f );
$matches = array();
...
0
votes
4answers
1k views
Read source code with PHP
Is there away to read a source code from another site?
Source code as HTML, when you right click on a site and then "Source code".
I've tried:
<? $f = fopen ("http://www.site.com/f", r);
echo $f;
...
1
vote
1answer
510 views
PHP DOMDocument: Problem with indentation
I just started using the DOMDocument Object since I want to parse an uploaded HTML File and then use it as a template for my cms.
I'm loading HTML from a file and - for testing purpose - save it as a ...
2
votes
4answers
771 views
Unicode PHP source files
For a project I'm currently working on I needed to add some unicode characters to some php file.
So I needed to use unicode encoding of course.
That made me wonder:
What prevents me of using ...
6
votes
6answers
694 views
Can people see my PHP code if rendering fails?
In order to get PHP to run I had to enable Includes on Apache webserver. No one can actually see my .php files because when they're fetched by the server they're rendered and the client sees just ...
7
votes
8answers
389 views
Understanding large php code, what techniques to use?
I have been handed over a large undocumented code of a application written in php as the original coder went AWOL. My task is to add new features but I can't do that without understanding the code.I ...

