tet3828 Posted December 14, 2006 Share Posted December 14, 2006 Is it possible to view php scripts from sites that are already on the web?I figured I could "view source" and see it but its all hidden. even in the pages I've made containing php script.I am not being malicious here, I have a fairly good understanding of php Im am just looking for some hints on creating a shopping cart. thanks Link to comment https://forums.phpfreaks.com/topic/30598-script-viewer-solved/ Share on other sites More sharing options...
uktrips007 Posted December 14, 2006 Share Posted December 14, 2006 why don't you try for redimade script for shopping cart application.try www.sourceforge.net and search for shopping cart script Link to comment https://forums.phpfreaks.com/topic/30598-script-viewer-solved/#findComment-140904 Share on other sites More sharing options...
pr0x Posted December 14, 2006 Share Posted December 14, 2006 For a quick explanation, php is a server side language, so any external website trying to pull data out of the files is immediately erased when php inputs it's information into the server. Link to comment https://forums.phpfreaks.com/topic/30598-script-viewer-solved/#findComment-140907 Share on other sites More sharing options...
monkey_05_06 Posted December 14, 2006 Share Posted December 14, 2006 To clarify the quick explanation, since PHP [i]is[/i] a server-side scripting language, your PHP script will be processed by your server before output is sent, and the actual PHP script (i.e., the bits between "<?php" and "?>") will be stripped from your page. The actual output of PHP is variable though most commonly the end-result is an HTML page. Link to comment https://forums.phpfreaks.com/topic/30598-script-viewer-solved/#findComment-140937 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.