My webhoster updates his PHP to PHP7. I use this only for sending mails in a contact form using the mail()-function. Refering to http://php.net/manual/de/function.mail.php[^] in Version 7 mail() is no longer available. Am I right with this assumption? if yes, are there any alternatives? I could still use php4 functionality, but my webhosters wants extra fees for php4-support. Thanks in advance! André
susad
Posts
-
mail()-function in PHP7 still available? -
How do I pass data from child of child form to parent form in C#?Build some business logic, i.e. class(es) for storing the text entered form3 and pass it/them to form1 in buttonAddRow_Click or make something like this
public struct EnteredText
{
public string t1, t2, t3;
};public partial class Form3 : Form
{
public delegate void ButtonClick(EnteredText data);
public event ButtonClick OnClick;
...
private void buttonAddRow _Click(object sender, EventArgs e)
{
EnteredText args;
args.t1 = textbox1.Text; args.t2 = ...
if (OnClick != null)
OnClick(args);
}
}Means you copy the text from the boxes into the struct and fire the event OnClick. Somewhere in Form2 you should do something like this:
Form3 f3 = new Form3();
f3.OnClick += f3_OnClick;
f3.Show();
}
private void f3_OnClick(EnteredText txt)
{
// do something with the text or refire a new event.
} -
TV: LCD or Plasma?I've got a Sharp Notevision projector and by a distance of 13 feet to the wall I've a ~90'' TV :-D
-
HobbiesAfter work I'm riding my motorbike, playing beachvolleyball with friends (in summer only ;)) or just sitting around in pubs trying to solve the problems of the world with the help of some pints of ale :-D Many years ago a played E-guitar in a heavy metal band, but we were not very successful. Currently I'm planning a 3-week-travel through south-east-europe via motorbike. Maybe I will arrive Bulgaria at the Black Sea :rolleyes:
-
Microsoft GrooveI would say, Groove is meant for document collaboration, something like a successor of SharePoint services. Greets André
-
Bug recording and reporting packages.We used bugtracker.net in our company too. IMHO it has a very intuitive UI, easy to setup and not overloaded with functionality. Good choice I think.