Bluepearl Design
Go Back   Bluepearl Design > Bluepearl Design > Need Help?

Make a popup with a certain width / height

Ask us questions relavent to Web Design and Computers.
Also support for Bluepearl Design and webclans.net hosting.

    

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old 04-08-2004, 11:12 AM   #1 (permalink)
 
Title: Member
Join Date: Feb 2004
Posts: 11
Rep Power: 0 op1df2 is on a distinguished road
Send a message via MSN to op1df2
Re: Make a popup with a certain width / height

I know thers alot of ways to make a popup with certain widths and heights
but most are javascript and i cant integrate that into my noobish ways of
php coding. anyone know how to do it in like html stuff?
op1df2 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-08-2004, 11:21 AM   #2 (permalink)
 
Title: Bryan
Join Date: Jan 2004
Location: Dundee
Age: 21
Posts: 3,547
Rep Power: 8 wasahobo is on a distinguished road
Send a message via AIM to wasahobo Send a message via MSN to wasahobo
Re: Make a popup with a certain width / height

aahaah, another one of you ppl who wants a pop up site, why do u ppl do that. i hate pop ups, and pop up sites because i have to turn off my pop up blocker to look at it, then get bombarded with pop ups once i turn it off..

other than that nope sorry i dontk now how to
__________________
BluePearl-Design + 3sStudios = Unlimited Possibilities.


Current Project: http://www.3sstudios.com/cloud.htm
wasahobo is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-08-2004, 03:25 PM   #3 (permalink)
 
Title: Bluepearl Veteran
Join Date: Mar 2004
Age: 17
Posts: 710
Rep Power: 5 Hayden is on a distinguished road
Send a message via MSN to Hayden
Re: Make a popup with a certain width / height

my google bar has blocked 700 pop ups in 1 month :P
__________________
Hayden is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-08-2004, 03:38 PM   #4 (permalink)
 
Title: Member
Join Date: Feb 2004
Posts: 11
Rep Power: 0 op1df2 is on a distinguished road
Send a message via MSN to op1df2
Re: Make a popup with a certain width / height

Its for a reason, and incase you (hobo) dunno who i am, my site is dfbhd-dod.net
If you go to the roster and click the ICQ Flower you can msg that person.
Well i dont want a huge ass window, but instead i want a small popup window
so that will fit in there, but i cant use javascript because im using php
variables into it, and i cant put variables into the head because it has no repeat
record (if that made any sense)
op1df2 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-08-2004, 03:41 PM   #5 (permalink)
 
ReFlex's Avatar
 
Title: Bluepearl Veteran
Join Date: Jan 2004
Age: 18
Posts: 677
Rep Power: 5 ReFlex is on a distinguished road
Send a message via MSN to ReFlex
Re: Make a popup with a certain width / height

wtf u cant use javascript with php i did i dont c why u cant omfg its not that hard just having some *****ness infamous :P
__________________
http://lukealford.com
ReFlex is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-08-2004, 04:43 PM   #6 (permalink)
 
Sean's Avatar
 
Title: Founder/Admin
Join Date: Jan 2004
Location: Sydney, Australia
Age: 28
Posts: 8,907
Images: 386
Blog Entries: 4
Rep Power: 10 Sean will become famous soon enough
Send a message via MSN to Sean Send a message via Skype™ to Sean
Re: Make a popup with a certain width / height

The javascript can be easily embedded into your PHP. It will not effect your variables. Will be easier if u create your header in a seperate file and call upon the header for each page.
Sean is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-08-2004, 05:43 PM   #7 (permalink)
 
Title: Member
Join Date: Feb 2004
Posts: 11
Rep Power: 0 op1df2 is on a distinguished road
Send a message via MSN to op1df2
Re: Make a popup with a certain width / height

aye, but the problem is i cant do that lol (dunno how)
op1df2 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-08-2004, 06:08 PM   #8 (permalink)
 
Sean's Avatar
 
Title: Founder/Admin
Join Date: Jan 2004
Location: Sydney, Australia
Age: 28
Posts: 8,907
Images: 386
Blog Entries: 4
Rep Power: 10 Sean will become famous soon enough
Send a message via MSN to Sean Send a message via Skype™ to Sean
Re: Make a popup with a certain width / height

ok for starters here is your Javascript

[code:1:316ac49a3e]<script language="JavaScript">
<!--
function openpopup(){
var popurl="testpage.php"
winpops=window.open(popurl,"","widt h=670,height=400, scrollbars,")
}
//-->
</script>[/code:1:316ac49a3e]
Place all this in your Header file, something like this header.inc

[code:1:316ac49a3e]<a href="javascript:openpopup()">link&lt ;/a>[/code:1:316ac49a3e]
Place this code either in your header file or main file.
If u place this code in a PHP script make sure it looks like this
[code:1:316ac49a3e]echo"<a href=\"javascript:openpopup()\">link& lt;/a>"
."";[/code:1:316ac49a3e]

This is how i add headers to another file. For example in your index.php file.

[code:1:316ac49a3e] <?php require_once($DOCUMENT_ROOT . '/header.inc'); ?>[/code:1:316ac49a3e]

Make sure this code is on the first line of your index.php for example.
Sean is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-09-2004, 02:07 AM   #9 (permalink)
 
Title: Bryan
Join Date: Jan 2004
Location: Dundee
Age: 21
Posts: 3,547
Rep Power: 8 wasahobo is on a distinguished road
Send a message via AIM to wasahobo Send a message via MSN to wasahobo
Re: Make a popup with a certain width / height

yeah what griff said.. i got your back griff
__________________
BluePearl-Design + 3sStudios = Unlimited Possibilities.


Current Project: http://www.3sstudios.com/cloud.htm
wasahobo is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 04-09-2004, 04:50 AM   #10 (permalink)
 
Title: Bluepearl Veteran
Join Date: Jan 2004
Posts: 409
Rep Power: 5 Blackhawk is on a distinguished road
Re: Make a popup with a certain width / height

umm yea me to
__________________
Blackhawk is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads for: Make a popup with a certain width / height
Thread Thread Starter Forum Replies Last Post
Looking to make a few bucks or more? wasahobo General Chat 0 05-11-2006 07:41 AM
How to make falling snow Watcher Adobe Photoshop 6 01-14-2006 07:51 AM
Can Some One Make Me A Sig? Anonymous Signatures 12 02-13-2004 10:16 AM


  
Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Bluepearl Templates

All times are GMT +11. The time now is 09:29 PM.

 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52