drkylec Posted March 24, 2009 Share Posted March 24, 2009 I was wondering if there is a way that I could make a small program, that will allow me and other allowed members, to send messages to the homepage, or a message update page for my website? I don't think there is a way without paying for some cellphone sms site program. It's not really important just good if i could update on the fly. Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/ Share on other sites More sharing options...
Brian W Posted March 24, 2009 Share Posted March 24, 2009 through text message you mean? Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-793006 Share on other sites More sharing options...
fry2010 Posted March 24, 2009 Share Posted March 24, 2009 You could send an email via your phone and then catch the emails in your website and display the content, kind of like you do with private messages on forums. Or I dont know if there is some free service that catches text messages and then pull them from there, but im sure its possible. Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-793008 Share on other sites More sharing options...
Brian W Posted March 24, 2009 Share Posted March 24, 2009 PMing on the forum is not ran like emails... Its db driven. But you do have the possible solution embedded in your reply, if you could figure out how to get emails to display on your website that would be a good start. Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-793032 Share on other sites More sharing options...
fry2010 Posted March 24, 2009 Share Posted March 24, 2009 ah i didnt really know that. But you can connect to a pop3 or imap account and optain the information from the email address. Look up the function imap_open(); also imap_headers('imap connection in here') to optain the list of messages. Run a loop to display all messages and a link to each message, or you might be able to just display the contents of each message. But its possible with email, take a little time to do i would think. Probably have a few headaches along the way. As it happens brian you seem to know more about forums than me, I have a problem with trying to get anchors to work in html. I have posted a question in the html section but no response yet I dont suppose you could take a look? Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-793090 Share on other sites More sharing options...
Mikedean Posted March 24, 2009 Share Posted March 24, 2009 It depends on what you're actually trying to do, if you want a 'status' type system (e.g. Facebook, Twitter) then you could simply make a separate page which is mobile friendly which allows you to update that message. Or yes, you could write an email catching service but this would require a scheduled task to be run every X minutes to check for updates. If you could provide more details on what you actually intend to do that would be helpful. Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-793101 Share on other sites More sharing options...
fry2010 Posted March 24, 2009 Share Posted March 24, 2009 why would it require a scheduled task? the script would be run everytime someone loads the page and the messages stored in the email account would be pulled from it. Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-793104 Share on other sites More sharing options...
Mikedean Posted March 24, 2009 Share Posted March 24, 2009 I guess, but it depends how fast it can grab the emails, you could see the page taking a while to load and so it would be much safer to just run a scheduled task. Although, you're right, you would be able to run the code whenever someone hits the page. Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-793109 Share on other sites More sharing options...
fry2010 Posted March 24, 2009 Share Posted March 24, 2009 i would imagine it would be the same speed as when you check your email online. Iv never tried it. Iv never done a scheduled task myself so this might be wrong, but is my thinking correct when you do a scheduled task it is primarily to update a database at a set period? Or does it have nothing to do with a database? If that is the case then you have an advantage over doing a scheduled task in that you dont use your own database space instead you are using the email providers space. Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-793116 Share on other sites More sharing options...
drkylec Posted March 25, 2009 Author Share Posted March 25, 2009 I looked up the imap_open and this si what i get for code <?php // To connect to an IMAP server running on port 143 on the local machine, // do the following: $mbox = imap_open("{webserver:143}INBOX", "[email protected]", "mypassword"); ?> when i tried to edit it i would get an error telling me that imap is undefined it is probably a common easy fix but if someone could help me that would be great and thank you for the help so far. Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-793560 Share on other sites More sharing options...
fry2010 Posted March 25, 2009 Share Posted March 25, 2009 try this one: $mbox = imap_open ("{localhost:110/pop3}INBOX", "user_id", "password"); it may be undefined because your computer blocking access to the port. Also I believe it is going to take a little more work to get the information etc this is just a connection at the end of the day and will return either true or false. Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-793567 Share on other sites More sharing options...
drkylec Posted March 25, 2009 Author Share Posted March 25, 2009 since i am using a webhost and not my localhost machine would i be putting mx.webhost.com instead of localhost im just trying to figure out if thats why i cant connect or if it is a security block. Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-793586 Share on other sites More sharing options...
drkylec Posted March 25, 2009 Author Share Posted March 25, 2009 never mind my last post i found out the my webhost does not allow imap_open and i have to figure out how to use fsockopen instead. Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-793638 Share on other sites More sharing options...
drkylec Posted March 25, 2009 Author Share Posted March 25, 2009 Well the good news is i figured out how to connect now i need to figure out how to display the emails so that others can see it. Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-793676 Share on other sites More sharing options...
drkylec Posted March 25, 2009 Author Share Posted March 25, 2009 im on the final stretch for the getting it to at least show on a page part all i need is to figure out what part of this code i have that i need to comment out or delete in order to display only the subject of the message in the page. <?php $fp=fsockopen("mail.webhost.com", 110, $errno, $errstr, 30); if($fp){ //echo 'Connected!<br>'; $username="USER [email protected]\r\n"; $password="PASS password\r\n"; $us=fwrite($fp, $username, strlen($username)); $ur=fgets($fp); //echo 'Username sent, server response: '.$ur.'<br>'; $ps=fwrite($fp, $password, strlen($password)); $pr=fgets($fp); //echo 'Password sent, server response: '.$pr.'<br>'; $res=fgets($fp); $parts=explode(" ", $res); //echo $parts[4].' messages on server<br><br>'; $cmd="LIST\r\n"; $get=fwrite($fp, $cmd, strlen($cmd)); $msg=fread($fp, 8192); //echo '<pre>'.$msg.'</pre>'; $cmd="RETR 1\r\n"; $get=fwrite($fp, $cmd, strlen($cmd)); $msg=fread($fp, 8192); echo '<pre>'.$msg.'</pre>'; } else{ echo 'Failed Connecting!<br>'; } fclose($fp); ?> if someone could figure it out for me that would be nice while I play around with it to figure it out. Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-793806 Share on other sites More sharing options...
fry2010 Posted March 25, 2009 Share Posted March 25, 2009 cool, sounds like you nearly there then. I have no idea about how to get just the message, but I remember reading on something about passing a specified paramater to the imap_open(function) maybe there is one for the fsockopen. Quote Link to comment https://forums.phpfreaks.com/topic/150943-sending-a-update-message-to-my-website-form-cellphone/#findComment-794036 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.