Flags »  Show posts from    to     

Icy Phoenix


Old Support Topics - Flags



Mighty Gorgon [ Tue 29 Aug, 2006 00:21 ]
Post subject: Re: Flags
Nice!

Good work!


Nizzle [ Tue 29 Aug, 2006 00:26 ]
Post subject: Re: Flags
great

now how do I add them into that list thingy?
so people can actually choose them and stuff


Nizzle [ Thu 31 Aug, 2006 21:44 ]
Post subject: Re: Flags
*BUMP*
yeh hellooww

I've got them flags
now how do I add them so people can use them?


KugeLSichA [ Fri 01 Sep, 2006 13:55 ]
Post subject: Re: Flags
upload the flags to your host into images/flags/ folder

then run an SQL query with all flags like that

Code: [Hide] [Select]
INSERT INTO `phpbb_flags` (`flag_id`, `flag_name`, `flag_image`) VALUES (1, 'Afghanistan', 'afghanistan.png');


cya


Nizzle [ Sat 02 Sep, 2006 13:50 ]
Post subject: Re: Flags
KugeLSichA wrote: [View Post]
upload the flags to your host into images/flags/ folder

then run an SQL query with all flags like that

Code: [Hide] [Select]
INSERT INTO `phpbb_flags` (`flag_id`, `flag_name`, `flag_image`) VALUES (1, 'Afghanistan', 'afghanistan.png');


cya


hmm..
so I'll have to do something like this

Code: [Hide] [Select]
INSERT INTO `XS_flags` (`flag_id`, `flag_name`, `flag_image`) VALUES (1, 'Curacao', 'curacao.png');


for both flags
what's the flag_id though?


Mighty Gorgon [ Sat 02 Sep, 2006 14:18 ]
Post subject: Re: Flags
Nizzle wrote: [View Post]
Code: [Hide] [Select]
INSERT INTO `XS_flags` (`flag_id`, `flag_name`, `flag_image`) VALUES (1, 'Curacao', 'curacao.png');

what's the flag_id though?


You can omit the id, so you won't be bothered to look at the latest available id...

Use this way for each flag:
Code: [Hide] [Select]
INSERT INTO `phpbb_flags` (`flag_name`, `flag_image`) VALUES ('Curacao', 'curacao.png');


Remember to change your table prefix if needed.


Nizzle [ Sun 03 Sep, 2006 16:47 ]
Post subject: Re: Flags
will do

thank youu




Powered by Icy Phoenix