Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~426 People Reached
Favorite Forums
Favorite Tags
Member Avatar for revata

I have a script working for me which loads content into an iframe on my index page based on a url query string. for example: mysite.com/index.php?two.php loads "two.php" into the iframe, heres what i have: [CODE]<script type="text/javascript"> function loadIframe() { var urlStr; urlStr = location.search.slice(1); window.frames.myiframename.location = urlStr; } </script>[/CODE] …

Member Avatar for revata
0
134
Member Avatar for revata

I'm building a few simple CMS variables into an Dynamic site that I half-built with Dreamweaver. The following code is the initiation of a paginated recordset display generated by Dreamweaver: [CODE]$currentPage = $_SERVER["PHP_SELF"]; $maxRows_creditsList = 6; $pageNum_creditsList = 0; if (isset($_GET['pageNum_creditsList'])) { $pageNum_creditsList = $_GET['pageNum_creditsList']; } $startRow_creditsList = $pageNum_creditsList * …

Member Avatar for CFROG
0
143
Member Avatar for revata

I have this email validation which checks to make sure a "@" sign is present but doesn't check for "." I just need to add this to the function which I thought would be pretty easy but has proved otherwise. Here's my script: [code=html] <script type="text/JavaScript"> <!-- function MM_findObj(n, d) …

Member Avatar for Thirusha
0
78
Member Avatar for revata

I've laid out a site using an iframe for the main content so the header and footer wouldn't reload with each page turn. However when navigating back to the site using History, only the center content from the iframe loads [w/out header footer]. Is there a way to code these …

Member Avatar for Airshow
0
71