473,387 Members | 1,863 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Help finding a PHP Script

Ok.

Here's the problem: I am making a website, and want to be able to
update news without having to go through the hassle of changing the
page in Dreamweaver and uploading it via FTP.

So I want/need a PHP script that will allow me to post news. The idea
is, I can post a news "event", and tomorrow, I can post another
"event." The script would automaticly put the most recent post first.

For examples, look at:

http://www.warcraftcentral.com/ (scroll down a couple lines to see
the news)
http://starcraft.org/ (news also on the index)
Thanks in advance...
Jul 17 '05 #1
5 1490
jk****@yahoo.com wrote:
Ok.

Here's the problem: I am making a website, and want to be able to
update news without having to go through the hassle of changing the
page in Dreamweaver and uploading it via FTP.

So I want/need a PHP script that will allow me to post news. The idea
is, I can post a news "event", and tomorrow, I can post another
"event." The script would automaticly put the most recent post first.

For examples, look at:

http://www.warcraftcentral.com/ (scroll down a couple lines to see
the news)
http://starcraft.org/ (news also on the index)
Thanks in advance...

we could, but then where would the learning come in? There are LOTS of
script examples for doing this but it may not be called "news". A
google search should turn up numerous examples of taking input and
displaying it..

You mentioned DW and FTP - tells me you may or may not own nor control
the equipment/environment. As long as this is the case, you don't have
any other options. Even if you used local files, how are they going to
magically appear on your page?

How are you "posting" it? How are you getting the information from your
keyboard into PHP/some sort of data store (a method for storing the data).

Do you "own" the web server and have full admin privs on the server, or
is it one belonging to your ISP? If it belongs to your ISP do they
allow PHP programming, because I know I wouldn't due to the security
risks involved.
Michael Austin.
Jul 17 '05 #2
Michael Austin <ma*****@firstdbasource.com> wrote in message news:<XY*****************@newssvr24.news.prodigy.c om>...
we could, but then where would the learning come in? There are LOTS of
script examples for doing this but it may not be called "news". A
google search should turn up numerous examples of taking input and
displaying it..

You mentioned DW and FTP - tells me you may or may not own nor control
the equipment/environment. As long as this is the case, you don't have
any other options. Even if you used local files, how are they going to
magically appear on your page?

How are you "posting" it? How are you getting the information from your
keyboard into PHP/some sort of data store (a method for storing the data).

Do you "own" the web server and have full admin privs on the server, or
is it one belonging to your ISP? If it belongs to your ISP do they
allow PHP programming, because I know I wouldn't due to the security
risks involved.
Michael Austin.

Yes, I am an admin on my server. No, I don't own one. Yes, I have
owned one in the past. I've done websites for companies before, I just
haven't tried to use PHP. This is the first website I am doing for
myself, not for pay.

And about learning. If I had the time to learn another languange, I
would gladly do it (I have a majors in Linguistics and Computer
Science). However, I don't, so I thought I would ask around here.

If you want me to use a plain read/write script, well, that's your
idea. I would like something more dynamic.

By posting, I mean as in a bullitin board. An ideal script would allow
qualitfied people to log on and "post" news, just as in a forum.
Jul 17 '05 #3
jk****@yahoo.com wrote:
Michael Austin <ma*****@firstdbasource.com> wrote in message news:<XY*****************@newssvr24.news.prodigy.c om>...
we could, but then where would the learning come in? There are LOTS of
script examples for doing this but it may not be called "news". A
google search should turn up numerous examples of taking input and
displaying it..

You mentioned DW and FTP - tells me you may or may not own nor control
the equipment/environment. As long as this is the case, you don't have
any other options. Even if you used local files, how are they going to
magically appear on your page?

How are you "posting" it? How are you getting the information from your
keyboard into PHP/some sort of data store (a method for storing the data).

Do you "own" the web server and have full admin privs on the server, or
is it one belonging to your ISP? If it belongs to your ISP do they
allow PHP programming, because I know I wouldn't due to the security
risks involved.
Michael Austin.


Yes, I am an admin on my server. No, I don't own one. Yes, I have
owned one in the past. I've done websites for companies before, I just
haven't tried to use PHP. This is the first website I am doing for
myself, not for pay.

And about learning. If I had the time to learn another languange, I
would gladly do it (I have a majors in Linguistics and Computer
Science). However, I don't, so I thought I would ask around here.

If you want me to use a plain read/write script, well, that's your
idea. I would like something more dynamic.

By posting, I mean as in a bullitin board. An ideal script would allow
qualitfied people to log on and "post" news, just as in a forum.


There are lots of forum-type example scripts around. I have not needed
one so, I have not researched it.. there are tons of script examples at
www.php.net (a really good source of information)

I don't know what [computer] languages (scripting and/or compiled) you
are familiar with, but in learning any lanaguage, I found it very easy
to take a script and modify it to suit my needs. Just remember, all
languages (scripting and otherwise) all do the same thing, they just use
slightly different syntax and a quick google search will find you almost
anything you need...

Michael Austin.
Jul 17 '05 #4
jk****@yahoo.com wrote:
Michael Austin <ma*****@firstdbasource.com> wrote in message news:<XY*****************@newssvr24.news.prodigy.c om>...
we could, but then where would the learning come in? There are LOTS of
script examples for doing this but it may not be called "news". A
google search should turn up numerous examples of taking input and
displaying it..

You mentioned DW and FTP - tells me you may or may not own nor control
the equipment/environment. As long as this is the case, you don't have
any other options. Even if you used local files, how are they going to
magically appear on your page?

How are you "posting" it? How are you getting the information from your
keyboard into PHP/some sort of data store (a method for storing the data).

Do you "own" the web server and have full admin privs on the server, or
is it one belonging to your ISP? If it belongs to your ISP do they
allow PHP programming, because I know I wouldn't due to the security
risks involved.
Michael Austin.


Yes, I am an admin on my server. No, I don't own one. Yes, I have
owned one in the past. I've done websites for companies before, I just
haven't tried to use PHP. This is the first website I am doing for
myself, not for pay.

And about learning. If I had the time to learn another languange, I
would gladly do it (I have a majors in Linguistics and Computer
Science). However, I don't, so I thought I would ask around here.

If you want me to use a plain read/write script, well, that's your
idea. I would like something more dynamic.

By posting, I mean as in a bullitin board. An ideal script would allow
qualitfied people to log on and "post" news, just as in a forum.


Forgot to mention - PHPNuke - what little I have been able to read about
it, looks like it would do what you want...

Michael Austin.
Jul 17 '05 #5
thanks alot....that's great..:))
Jul 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Fuzzyman | last post by:
What's the best, cross platform, way of finding out the directory a script is run from ? I've googled a bit, but can't get a clear answer. On sys.argv the docs say : argv is the script name...
2
by: ratlhead | last post by:
Hi there, I'm not an ASP guy and I'm in need of finding out a solution to a problem that's ASP related. A site that I'm helping someone migrate to a new box (currently internal and now going...
9
by: glin | last post by:
Hi Guys, I am having problem finding the position of a button that I can set the div position next to the button. Can you please help? Thanks in advance.
2
by: . . | last post by:
Hi I need some help with java script . I have a ASPX page that is pulling a user message heading from the table on the page . The user message header has message body which suppose to dispay...
1
by: hel | last post by:
Hi I have just adopted a PHP project and need some help understanding DB_DataObject. I've looked around on the web and can't find a simple explanation. Basically, my MySQL database has no...
4
by: shror | last post by:
dear all, i have started learning php 2 weeks ago and i have wrote my first script for mail sender and the script takes all my data and move to the thanks page but the problem is that the mails...
3
by: gham | last post by:
I am a complete noob to linux and shell scripting please help this is what I am trying to do 1. Create a script that takes 1 argument being a file, read the inputted file, and look for...
8
by: inFocus | last post by:
Hello, I am new to python and wanted to write something for myself where after inputing two words it would search entire drive and when finding both names in files name would either copy or move...
53
by: souporpower | last post by:
Hello All I am trying to activate a link using Jquery. Here is my code; <html> <head> <script type="text/javascript" src="../../resources/js/ jquery-1.2.6.js"</script> <script...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.