web

What stack are major sites build on?

Hi, I'm sure I've seen a site indexing interesting information about the technologies under major sites (google, yahoo, facebook, stackoverflow itself and so on), indicating what server they run on, what programming languages and database are used and so on. Can anyone help gathering any information? Thanks ...

What are the pros and cons of using a web template versus building a site from the bottom up?

I've talked to a few people, and I've heard differing opinions. Some say that building a website- in this case, a tourism site for my hometown- using HTML, CSS, and Javascript that I've written myself, as much as possible. Having started from that mentality, I find even using a Javascript library a little worrisome. However, others say t...

Sending "alert/notification" to cell phone from website

I was wondering if there was a way for a website to send an alert/notification to a cell phone (smart phone, android, iphone... stuff like that) where the notification will ask the user a question and they have to answer the question and the response is sent back to the website and their answer is logged in the database. I would also li...

How to detect if "Web Services Feature Pack for WebSphere" is installed in Websphere server?

How do I detect if "Web Services Feature Pack for WebSphere "is installed in Websphere Application Server v6.1? I need this information to solve some classloading issues while deploying cxf webservices in Websphere. ...

MySQL SELECT from PHP

I have one table ( members ) and five columns ( username , password , FirstName , LastName , Email ) I need to get the Email for the user admin. How would this be done? ...

INSERT INTO MySQL and PHP

I have a MySQL table ( members ) with six columns ( FirstName, LastName, Email, username, password, Key) I need to insert a string into the Key column for the username admin How would I go about doing this? ...

How to correctly write copyright/license info in PHP/JavaScript based projects?

I am developing web applications for various clients. I also have libraries that I use in multiply projects and I also incorporate BSD and other open source libraries. I am using PHP server side. I want to make the licensing clear both for my PHP and both for my JavaScript files, but at the same time I want to keep this simple, I want ...

Thesis with source code or complete project for semantic web whith c# ?

hello all .. i'm looking for a semantic web thesis with source code or complete project using C# language ? so ..can you help me .. thankx advance .. ...

Is there a way to see a selected part of a web page's source using c#

I've created a webbrowser in C# and I want to be able to select part of the web page and have the source appear in a text box. So far all I've managed to do is get the whole page's source using: private void btnSource_Click(object sender, EventArgs e) { string PageSource; mshtml.HTMLDocument objHtmlDoc =...

PHP error when using mysql related functions

I have another script that I can't figure out what is wrong with it. I attempted to use the error_reporting(E_ALL); to report the errors, but it doesn't report anything. Anyway, here is the code I'm having trouble with. <?php error_reporting(E_ALL); $username = $_POST['user']; $email = $_POST['email']; $password = md5($_POST['pass'])...

How to register a .eu domain?

I want register a domain under the .eu TLD, but I don't live in Europe [which is a requiriment to that]. I'd like to know if there is any website which register the domain on its name or any other solution. ...

Combining multiple SVGs to avoid HTTP requests

Hi, We all know CSS sprites - a method to combine multiple images into one and thus avoiding the need for many HTTP requests. However, I am using SVG, so, combining them into one is not as obvious. How would I accomplish this with SVG? Is it wise idea to put the SVG into the document at the bottom? What if it's an application and not a ...

PHP session var strange value through AJAX

Hello guys, my code is a bit messy so I'll try to explain to you in words: I have this index.php page that shows a random file from my files table in my database. People have the opportunity to rate these files by clicking on notes that open "vote.php" through a small AJAX pop-up. Now here's the problem. On index.php I pull the ID fro...

how can i put rss feed link on my website?

i wanted to put an rss feed for a web app im creating in php, so basically w they can subscribe to a part of a website using google reader or feedburner etc ...

select all text in contenteditable div when it focus/click

Hi, I've got contenteditable div as below. <div style=" border:solid 1px #D31444" contenteditable="true">12 some text...</div> What I need is, when I click on the div, all the text will automatically get selected. Can you give me solution please? ...

Am diving into web development using python. Will Flask be a good place to start!

Hi so as the title suggests, am just diving into web development. And if you might see my last post, it was about understanding the concept of sessions. So that is the level of my expertise in there. I went across a couple of frameworks, and I seriously dont have the patience of going through the entire django docs. So I stumbled across...

How to use HttpContext of an existing web site, from a web service?

I am building a web service which uses some of an existing web site's methods. However, some classes and methods cannot be used (for example Redirect - which obivously throws an exception when not invoked from a web site's context). Now I came to a section in code where HttpContext.Current.Application.Get(keyNames.EncodedKey) Is used. ...

How to poll simple website for updates?

I have a professor who randomly updates his website with homework due tomorrow and seems to expect us to check it every hour. This sounds like a job for a program. His website is simple and entirely html, not even any javascript. How could I programatically detect any changes/updates to his website? ...

Creating a website to communicate with an embedded device

I'm currently working on a project where I'm trying to control an embedded device through an Internet facing website. The idea is is that a user can go to a website and tell this device to preform some kind of action. An action on the website would be translated into a series of CLI commands and then sent to the device. Communication cou...

How to easily create and edit XML documents using web forms

We have a java based enterprise web application. User enter / edit data using web forms and that data usually goes to the database. Some user data is gathered just to send it through a web service. So the process is enter data (which is turned into a xml document) optionally edit data (which modifies above xml document) send it to a ...