another php question

Any help regarding any computer based programming language (non serverside) can be requested and recieved here.
Post Reply
thecobra
Posts: 196
Joined: Tue Mar 11, 2008 11:30 am

another php question

Post by thecobra »

does anyone know how to make a php that connect to a socket program(visual basic or c) and get some info and then post it in html form on the web

basicly a server info script in php

also does anyone know how to make a game in php?
or at list a tutoring showing this?


Tails5
Posts: 1302
Joined: Wed Mar 15, 2006 8:09 am
Contact:

Post by Tails5 »

Haven't read right through the page, but there are some on http://www.pixel2life.com/tutorials/php ... _creation/
Webmaster Yoda: You must confront the cPanel. Then, and only then, a webmaster will you be.
Julius Caesar: Veni, vidi, posti
thecobra
Posts: 196
Joined: Tue Mar 11, 2008 11:30 am

Post by thecobra »

Tails5 wrote:Haven't read right through the page, but there are some on http://www.pixel2life.com/tutorials/php ... _creation/
thanks
it help me on the game part but i still dont see socket type of program
let me keep on checking
Tails5
Posts: 1302
Joined: Wed Mar 15, 2006 8:09 am
Contact:

Post by Tails5 »

I don't think there are any socket things on that, but it has the game thing, for opening sockets in php, go to http://docs.php.net/manual/en/function.fsockopen.php and http://docs.php.net/manual/en/function.pfsockopen.php
Webmaster Yoda: You must confront the cPanel. Then, and only then, a webmaster will you be.
Julius Caesar: Veni, vidi, posti
thecobra
Posts: 196
Joined: Tue Mar 11, 2008 11:30 am

Post by thecobra »

Tails5 wrote:I don't think there are any socket things on that, but it has the game thing, for opening sockets in php, go to http://docs.php.net/manual/en/function.fsockopen.php and http://docs.php.net/manual/en/function.pfsockopen.php
thanks i will check it out today
fghi214
Posts: 5
Joined: Wed Jan 21, 2009 8:20 am

Bien, c'est une bonne idée!

Post by fghi214 »

Bien, c'est une bonne idée!
world of warcraft -wow gold - power leveling
Gebbo
Posts: 554
Joined: Tue May 16, 2006 3:22 pm

php

Post by Gebbo »

Tails5 wrote:Haven't read right through the page, but there are some on http://www.pixel2life.com/tutorials/php ... _creation/
This might come in handy, thank you
.............................:: Spirit of Fire ::..................................

Image
gotHoadaHix
Posts: 5
Joined: Tue Feb 21, 2012 4:58 pm
Contact:

another php question

Post by gotHoadaHix »

Hi all,
ok, this forum has an RSS feed. And What I am trying to do is to figure out how to have a reader on the index page at my web site so that I can display the feed on other pages of my web site if I want to.
I read that the best way is to use a PHP script so that the search bots can read the feed. Does anyone know of a good script or how do I do this ?
User avatar
Williamundib
Posts: 5
Joined: Sat Nov 20, 2021 5:56 pm
Location: Iraq
Contact:

-

Post by Williamundib »

Hi,
Hey there,

I have a class A that uses class B. Class B also uses class A. This is recursive and am wondering if you can redefine PHP classes like in C.

class A

class B
private classA;

public function __constructclassA
this->classA = classA;


public function someFunc echo blah;


class A
private classB;

public function __constructclassB
classB->someFunc;
****
Post Reply